fe2a6db786
rust / build / test / clippy / fmt (push) Has been cancelled
Layout:
- src/ .NET 10 x64 reference: MxNativeCodec, MxNativeClient,
MxAsbClient, probes, tests, harnesses. Executable spec.
- design/ Architectural plan for the Rust port (M0–M6), error
model, protocol invariants, risks (R1–R16), adversarial
review log (review.md).
- rust/ Rust workspace. M0 skeleton + M1 codec parity.
mxaccess-codec: 215 unit tests + 2 cross-implementation
parity tests (byte-identical against .NET reference).
Other crates are M0 stubs awaiting M2+.
- captures/ Frida + netsh + pcap evidence per CLAUDE.md
("captures are evidence, not throwaway logs").
- analysis/ Decompiled C# (frida/proxy/decompiled-*),
Ghidra exports for native DLLs (`exports/` only —
working state at `projects/` and AVEVA's input
binaries at `input/` are gitignored).
- docs/ Reverse-engineering reference docs.
- tools/ Setup-LiveProbeEnv.ps1 (Infisical credential fetcher),
Compute-Crc.ps1 (.NET parity helper).
- .github/workflows/ Rust CI: fmt + build + test + clippy on Windows.
- LICENSE MIT (Joseph Doherty, 2026).
Verified:
- cargo test --workspace → 217 passed (215 unit + 2 .NET parity), 0 failed
- cargo clippy --workspace -- -D warnings → clean
- cargo fmt --all -- --check → clean
- cargo publish --dry-run -p mxaccess-codec → packages cleanly
Excluded from history (see .gitignore):
- **/bin, **/obj, **/target — build artifacts
- analysis/ghidra/projects/ — Ghidra working state (regenerable)
- analysis/ghidra/input/ — AVEVA proprietary DLLs (vendor IP)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
58 lines
1.5 KiB
C#
58 lines
1.5 KiB
C#
namespace Interop.Lmx;
|
|
|
|
public enum EATTRIBUTEPROPERTY
|
|
{
|
|
idxAttribPropUndefined = -1,
|
|
idxAttribPropName = 0,
|
|
idxAttribPropAttributeCategory = 1,
|
|
idxAttribPropCfgSethandler = 2,
|
|
idxAttribPropRtSethandler = 3,
|
|
idxAttribPropType = 4,
|
|
idxAttribPropUpperBoundDim1 = 5,
|
|
idxAttribPropValue = 10,
|
|
idxAttribPropSecurityClassification = 11,
|
|
idxAttribPropLocked = 12,
|
|
idxAttribPropQuality = 13,
|
|
idxAttribPropBit00 = 14,
|
|
idxAttribPropBit01 = 15,
|
|
idxAttribPropBit02 = 16,
|
|
idxAttribPropBit03 = 17,
|
|
idxAttribPropBit04 = 18,
|
|
idxAttribPropBit05 = 19,
|
|
idxAttribPropBit06 = 20,
|
|
idxAttribPropBit07 = 21,
|
|
idxAttribPropBit08 = 22,
|
|
idxAttribPropBit09 = 23,
|
|
idxAttribPropBit10 = 24,
|
|
idxAttribPropBit11 = 25,
|
|
idxAttribPropBit12 = 26,
|
|
idxAttribPropBit13 = 27,
|
|
idxAttribPropBit14 = 28,
|
|
idxAttribPropBit15 = 29,
|
|
idxAttribPropBit16 = 30,
|
|
idxAttribPropBit17 = 31,
|
|
idxAttribPropBit18 = 32,
|
|
idxAttribPropBit19 = 33,
|
|
idxAttribPropBit20 = 34,
|
|
idxAttribPropBit21 = 35,
|
|
idxAttribPropBit22 = 36,
|
|
idxAttribPropBit23 = 37,
|
|
idxAttribPropBit24 = 38,
|
|
idxAttribPropBit25 = 39,
|
|
idxAttribPropBit26 = 40,
|
|
idxAttribPropBit27 = 41,
|
|
idxAttribPropBit28 = 42,
|
|
idxAttribPropBit29 = 43,
|
|
idxAttribPropBit30 = 44,
|
|
idxAttribPropBit31 = 45,
|
|
idxAttribPropValueReadOnly = 46,
|
|
idxAttribPropSecurityClassificationReadOnly = 47,
|
|
idxAttribPropLockedReadOnly = 48,
|
|
idxAttribPropTime = 49,
|
|
idxAttribPropBuffer = 50,
|
|
idxAttribPropHasBuffer = 51,
|
|
idxAttribPropEnumStrings = 52,
|
|
idxAttribPropReasonDesc = 53,
|
|
idxAttribPropEND = 54
|
|
}
|