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>
63 lines
1.9 KiB
C#
63 lines
1.9 KiB
C#
namespace Interop.NmxAdptr;
|
|
|
|
public enum ECOMMONPRIMITIVE
|
|
{
|
|
idxCommonUndefined = -1,
|
|
idxCommonExternalName = 1,
|
|
idxCommonInternalName = 2,
|
|
idxCommonTagname = 100,
|
|
idxCommonShortDescription = 101,
|
|
idxCommonCategoryIDEnum = 102,
|
|
idxCommonAttributes = 103,
|
|
idxCommonCmdScanState = 104,
|
|
idxCommonScanState = 105,
|
|
idxCommonSecurityGroup = 106,
|
|
idxCommonError = 107,
|
|
idxCommonRelativeOrderEnum = 108,
|
|
idxCommonArea = 109,
|
|
idxCommonContainer = 110,
|
|
idxCommonHost = 111,
|
|
idxCommonAlarmModeEnum = 112,
|
|
idxCommonAlarmMode = 113,
|
|
idxCommonAlarmModeCmd = 114,
|
|
idxCommonAlarmInhibit = 115,
|
|
idxCommonInAlarm = 116,
|
|
idxCommonBasedOn = 117,
|
|
idxCommonIsTemplate = 118,
|
|
idxCommonCodeBase = 119,
|
|
idxCommonUDAs = 120,
|
|
idxCommon_InheritedUDAs = 121,
|
|
idxCommonExtensions = 122,
|
|
idxCommon_InheritedExtensions = 123,
|
|
idxCommon_Category = 124,
|
|
idxCommon_ConfigVersion = 125,
|
|
idxCommon_Warnings = 126,
|
|
idxCommonContainedName = 127,
|
|
idxCommonExecutionRelatedObject = 128,
|
|
idxCommonExecutionRelativeOrder = 129,
|
|
idxCommonHierachicalName = 130,
|
|
idxCommonMinorVersion = 131,
|
|
idxCommon_CmdAdd = 132,
|
|
idxCommon_CmdRemove = 133,
|
|
idxCommonCmdData = 134,
|
|
idxCommon_InheritedCmdData = 135,
|
|
idxCommon_AdviseOnlyActiveEnabled = 136,
|
|
idxCommonAlarmMostUrgentSeverity = 137,
|
|
idxCommonAlarmMostUrgentMode = 138,
|
|
idxCommonAlarmMostUrgentAcked = 139,
|
|
idxCommonAlarmCntsBySeverity = 140,
|
|
idxCommon_AlarmMostUrgentInit = 141,
|
|
idxCommon_TempMostUrgentSeverity = 142,
|
|
idxCommon_TempMostUrgentMode = 143,
|
|
idxCommon_TempMostUrgentAcked = 144,
|
|
idxCommon_TempCntsBySeverity = 145,
|
|
idxCommon_TempMostUrgentInit = 146,
|
|
idxCommon_AggAlarmUpdate = 147,
|
|
idxCommonAlarmMostUrgentInAlarm = 148,
|
|
idxCommon_TempMostUrgentInAlarm = 149,
|
|
idxCommonAlarmMostUrgentShelved = 150,
|
|
idxCommonAlarmCntsBySeverityEnableShelved = 151,
|
|
idxCommon_TempMostUrgentShelved = 152,
|
|
idxCommon_TempCntsBySeverityEnableShelved = 153
|
|
}
|