Initial project state: .NET reference, design, Rust port (M0+M1), evidence
rust / build / test / clippy / fmt (push) Has been cancelled
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>
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(65)]
|
||||
internal struct _Bool_struct
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(65)]
|
||||
internal struct _Container_base0
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[MiscellaneousBits(65)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct _Container_base12
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(65)]
|
||||
internal struct _Container_proxy
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct _Exception_ptr
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct _Iosb_003Cint_003E
|
||||
{
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[CLSCompliant(false)]
|
||||
[NativeCppClass]
|
||||
public enum _Dummy_enum
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
[DebugInfoInPDB]
|
||||
[CLSCompliant(false)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
public enum _Fmtflags
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
[NativeCppClass]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
public enum _Iostate
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
public enum _Openmode
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[CLSCompliant(false)]
|
||||
public enum _Seekdir
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(65)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct _Iterator_base0
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(65)]
|
||||
[NativeCppClass]
|
||||
internal struct _Iterator_base12
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 36)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct _Locinfo
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct _Mutex
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(65)]
|
||||
internal struct _Nonscalar_ptr_iterator_tag
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(65)]
|
||||
internal struct _Scalar_ptr_iterator_tag
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct _String_const_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct _String_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 28)]
|
||||
[MiscellaneousBits(64)]
|
||||
[UnsafeValueType]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct _String_val_003Cchar_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Explicit, Size = 16)]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(66)]
|
||||
[UnsafeValueType]
|
||||
public struct _Bxty
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 28)]
|
||||
[UnsafeValueType]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct _String_val_003Cwchar_t_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Explicit, Size = 16)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(66)]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
[UnsafeValueType]
|
||||
public struct _Bxty
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct _Timevec
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal enum _Uninitialized
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct _Vector_const_iterator_003Cstd_003A_003A_Vector_val_003C_WIN32_FIND_DATAW_002Cstd_003A_003Aallocator_003C_WIN32_FIND_DATAW_003E_0020_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct _Vector_iterator_003Cstd_003A_003A_Vector_val_003C_WIN32_FIND_DATAW_002Cstd_003A_003Aallocator_003C_WIN32_FIND_DATAW_003E_0020_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct _Vector_val_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct _Vector_val_003C_WIN32_FIND_DATAW_002Cstd_003A_003Aallocator_003C_WIN32_FIND_DATAW_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct _Yarn_003Cchar_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct allocator_003C_ItemDataUpdate_0020_002A_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(65)]
|
||||
public struct rebind_003C_ItemDataUpdate_0020_002A_003E
|
||||
{
|
||||
}
|
||||
|
||||
[SpecialName]
|
||||
public unsafe static void _003CMarshalCopy_003E(allocator_003C_ItemDataUpdate_0020_002A_003E* P_0, allocator_003C_ItemDataUpdate_0020_002A_003E* P_1)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct allocator_003C_WIN32_FIND_DATAW_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(65)]
|
||||
public struct rebind_003C_WIN32_FIND_DATAW_003E
|
||||
{
|
||||
}
|
||||
|
||||
[SpecialName]
|
||||
public unsafe static void _003CMarshalCopy_003E(allocator_003C_WIN32_FIND_DATAW_003E* P_0, allocator_003C_WIN32_FIND_DATAW_003E* P_1)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct allocator_003Cchar_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(65)]
|
||||
[NativeCppClass]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
public struct rebind_003Cchar_003E
|
||||
{
|
||||
}
|
||||
|
||||
[SpecialName]
|
||||
public unsafe static void _003CMarshalCopy_003E(allocator_003Cchar_003E* P_0, allocator_003Cchar_003E* P_1)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct allocator_003Cvoid_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct allocator_003Cwchar_t_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(65)]
|
||||
[NativeCppClass]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
public struct rebind_003Cwchar_t_003E
|
||||
{
|
||||
}
|
||||
|
||||
[SpecialName]
|
||||
public unsafe static void _003CMarshalCopy_003E(allocator_003Cwchar_t_003E* P_0, allocator_003Cwchar_t_003E* P_1)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct bad_alloc
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct bad_array_new_length
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct bad_cast
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct bad_exception
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 72)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct basic_ios_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 72)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct basic_ios_003Cunsigned_0020short_002Cstd_003A_003Achar_traits_003Cunsigned_0020short_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 72)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 96)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct basic_iostream_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 96)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct basic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 88)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct basic_istream_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[CLSCompliant(false)]
|
||||
public struct _Sentry_base
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[CLSCompliant(false)]
|
||||
public struct sentry
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 88)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct basic_istream_003Cunsigned_0020short_002Cstd_003A_003Achar_traits_003Cunsigned_0020short_003E_0020_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[CLSCompliant(false)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
public struct _Sentry_base
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[CLSCompliant(false)]
|
||||
public struct sentry
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 88)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct basic_istream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[NativeCppClass]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
public struct _Sentry_base
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[CLSCompliant(false)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
public struct sentry
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 80)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct basic_ostream_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[CLSCompliant(false)]
|
||||
[NativeCppClass]
|
||||
public struct _Sentry_base
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[CLSCompliant(false)]
|
||||
public struct sentry
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 80)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct basic_ostream_003Cunsigned_0020short_002Cstd_003A_003Achar_traits_003Cunsigned_0020short_003E_0020_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[CLSCompliant(false)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
public struct _Sentry_base
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[MiscellaneousBits(64)]
|
||||
[CLSCompliant(false)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
public struct sentry
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 80)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[CLSCompliant(false)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
public struct _Sentry_base
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[CLSCompliant(false)]
|
||||
[MiscellaneousBits(64)]
|
||||
public struct sentry
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 60)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct basic_streambuf_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 60)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct basic_streambuf_003Cunsigned_0020short_002Cstd_003A_003Achar_traits_003Cunsigned_0020short_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 60)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 28)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[UnsafeValueType]
|
||||
[NativeCppClass]
|
||||
internal struct basic_string_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 28)]
|
||||
[MiscellaneousBits(64)]
|
||||
[UnsafeValueType]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
[SpecialName]
|
||||
public unsafe static void _003CMarshalCopy_003E(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_1)
|
||||
{
|
||||
((int*)P_0)[5] = 7;
|
||||
((int*)P_0)[4] = 0;
|
||||
*(short*)P_0 = 0;
|
||||
global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, P_1, 0u, uint.MaxValue);
|
||||
}
|
||||
|
||||
[SpecialName]
|
||||
public unsafe static void _003CMarshalDestroy_003E(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0)
|
||||
{
|
||||
if (8u <= (uint)((int*)P_0)[5])
|
||||
{
|
||||
global::_003CModule_003E.delete((void*)(int)(*(uint*)P_0));
|
||||
}
|
||||
((int*)P_0)[5] = 7;
|
||||
((int*)P_0)[4] = 0;
|
||||
*(short*)P_0 = 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 72)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 168)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(65)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct char_traits_003Cchar_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(65)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct char_traits_003Cunsigned_0020short_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(65)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct char_traits_003Cwchar_t_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct codecvt_003Cchar_002Cchar_002Cint_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct codecvt_003Cunsigned_0020short_002Cchar_002Cint_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct codecvt_003Cwchar_t_002Cchar_002Cint_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct codecvt_base
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 24)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct ctype_003Cchar_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 32)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct ctype_003Cunsigned_0020short_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 32)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct ctype_003Cwchar_t_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(65)]
|
||||
[NativeCppClass]
|
||||
internal struct ctype_base
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 24)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct ctype_byname_003Cchar_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct domain_error
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal static struct error_category
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct error_code
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct error_condition
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct exception
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal enum float_denorm_style
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal enum float_round_style
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 24)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct fpos_003Cint_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct hash_003C__int64_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct hash_003Cdouble_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct hash_003Cfloat_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct hash_003Clong_0020double_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct hash_003Cstd_003A_003Abasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_0020_003E
|
||||
{
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct hash_003Cstd_003A_003Aerror_condition_003E
|
||||
{
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct hash_003Cstd_003A_003Abasic_string_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E_0020_003E
|
||||
{
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct hash_003Cstd_003A_003Aerror_code_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct hash_003Cunsigned_0020__int64_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct hash_003Cunsigned_0020long_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct invalid_argument
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 56)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct ios_base
|
||||
{
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[CLSCompliant(false)]
|
||||
public enum @event
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 20)]
|
||||
[CLSCompliant(false)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
public struct failure
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[CLSCompliant(false)]
|
||||
public struct Init
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(65)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct _Iosarray
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[MiscellaneousBits(65)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct _Fnarray
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct istreambuf_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct istreambuf_iterator_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct length_error
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct locale
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
||||
[CLSCompliant(false)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
public struct id
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 32)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[CLSCompliant(false)]
|
||||
public struct _Locimp
|
||||
{
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 8)]
|
||||
[CLSCompliant(false)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
public struct facet
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 12)]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
internal struct logic_error
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct num_get_003Cchar_002Cstd_003A_003Aistreambuf_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct num_get_003Cwchar_t_002Cstd_003A_003Aistreambuf_iterator_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct num_put_003Cchar_002Cstd_003A_003Aostreambuf_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 16)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct num_put_003Cwchar_t_002Cstd_003A_003Aostreambuf_iterator_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_0020_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct numeric_limits_003C__int64_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct numeric_limits_003Cbool_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct numeric_limits_003Cchar_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
internal struct numeric_limits_003Cdouble_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct numeric_limits_003Cfloat_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct numeric_limits_003Cint_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct numeric_limits_003Clong_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct numeric_limits_003Clong_0020double_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[DebugInfoInPDB]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct numeric_limits_003Cshort_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
[MiscellaneousBits(64)]
|
||||
internal struct numeric_limits_003Csigned_0020char_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[NativeCppClass]
|
||||
[MiscellaneousBits(64)]
|
||||
[DebugInfoInPDB]
|
||||
internal struct numeric_limits_003Cunsigned_0020__int64_003E
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Microsoft.VisualC;
|
||||
|
||||
namespace std;
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
||||
[MiscellaneousBits(64)]
|
||||
[NativeCppClass]
|
||||
[DebugInfoInPDB]
|
||||
internal struct numeric_limits_003Cunsigned_0020char_003E
|
||||
{
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user