|
|
|
@ -200,6 +200,16 @@ namespace CppSharp
@@ -200,6 +200,16 @@ namespace CppSharp
|
|
|
|
|
IntPtr = 16 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public enum MacroLocation |
|
|
|
|
{ |
|
|
|
|
Unknown = 0, |
|
|
|
|
ClassHead = 1, |
|
|
|
|
ClassBody = 2, |
|
|
|
|
FunctionHead = 3, |
|
|
|
|
FunctionParameters = 4, |
|
|
|
|
FunctionBody = 5 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public enum RawCommentKind |
|
|
|
|
{ |
|
|
|
|
Invalid = 0, |
|
|
|
@ -231,16 +241,6 @@ namespace CppSharp
@@ -231,16 +241,6 @@ namespace CppSharp
|
|
|
|
|
VerbatimBlockLineComment = 14 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public enum MacroLocation |
|
|
|
|
{ |
|
|
|
|
Unknown = 0, |
|
|
|
|
ClassHead = 1, |
|
|
|
|
ClassBody = 2, |
|
|
|
|
FunctionHead = 3, |
|
|
|
|
FunctionParameters = 4, |
|
|
|
|
FunctionBody = 5 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public enum ArchType |
|
|
|
|
{ |
|
|
|
|
UnknownArch = 0, |
|
|
|
@ -3261,9 +3261,6 @@ namespace CppSharp
@@ -3261,9 +3261,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -3282,6 +3279,9 @@ namespace CppSharp
@@ -3282,6 +3279,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[SuppressUnmanagedCodeSecurity] |
|
|
|
|
[DllImport("CppSharp.CppParser.dll", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.Cdecl, |
|
|
|
|
EntryPoint="_ZN8CppSharp9CppParser3AST11DeclarationC2ENS1_15DeclarationKindE")] |
|
|
|
@ -3322,6 +3322,16 @@ namespace CppSharp
@@ -3322,6 +3322,16 @@ namespace CppSharp
|
|
|
|
|
EntryPoint="_ZN8CppSharp9CppParser3AST11Declaration7setNameEPKc")] |
|
|
|
|
internal static extern void setName_0(global::System.IntPtr instance, global::System.IntPtr s); |
|
|
|
|
|
|
|
|
|
[SuppressUnmanagedCodeSecurity] |
|
|
|
|
[DllImport("CppSharp.CppParser.dll", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.Cdecl, |
|
|
|
|
EntryPoint="_ZN8CppSharp9CppParser3AST11Declaration6getUSREv")] |
|
|
|
|
internal static extern global::System.IntPtr getUSR_0(global::System.IntPtr instance); |
|
|
|
|
|
|
|
|
|
[SuppressUnmanagedCodeSecurity] |
|
|
|
|
[DllImport("CppSharp.CppParser.dll", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.Cdecl, |
|
|
|
|
EntryPoint="_ZN8CppSharp9CppParser3AST11Declaration6setUSREPKc")] |
|
|
|
|
internal static extern void setUSR_0(global::System.IntPtr instance, global::System.IntPtr s); |
|
|
|
|
|
|
|
|
|
[SuppressUnmanagedCodeSecurity] |
|
|
|
|
[DllImport("CppSharp.CppParser.dll", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.Cdecl, |
|
|
|
|
EntryPoint="_ZN8CppSharp9CppParser3AST11Declaration12getDebugTextEv")] |
|
|
|
@ -3451,6 +3461,22 @@ namespace CppSharp
@@ -3451,6 +3461,22 @@ namespace CppSharp
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public string USR |
|
|
|
|
{ |
|
|
|
|
get |
|
|
|
|
{ |
|
|
|
|
var __ret = Internal.getUSR_0((__Instance + __PointerAdjustment)); |
|
|
|
|
return Marshal.PtrToStringAnsi(__ret); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var arg0 = Marshal.StringToHGlobalAnsi(value); |
|
|
|
|
Internal.setUSR_0((__Instance + __PointerAdjustment), arg0); |
|
|
|
|
Marshal.FreeHGlobal(arg0); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public string DebugText |
|
|
|
|
{ |
|
|
|
|
get |
|
|
|
@ -3559,24 +3585,6 @@ namespace CppSharp
@@ -3559,24 +3585,6 @@ namespace CppSharp
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public CppSharp.Parser.AST.RawComment Comment |
|
|
|
|
{ |
|
|
|
|
get |
|
|
|
|
{ |
|
|
|
|
CppSharp.Parser.AST.RawComment __result0; |
|
|
|
|
if (((Internal*) __Instance)->Comment == IntPtr.Zero) __result0 = null; |
|
|
|
|
else if (CppSharp.Parser.AST.RawComment.NativeToManagedMap.ContainsKey(((Internal*) __Instance)->Comment)) |
|
|
|
|
__result0 = (CppSharp.Parser.AST.RawComment) CppSharp.Parser.AST.RawComment.NativeToManagedMap[((Internal*) __Instance)->Comment]; |
|
|
|
|
else __result0 = CppSharp.Parser.AST.RawComment.__CreateInstance(((Internal*) __Instance)->Comment); |
|
|
|
|
return __result0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
((Internal*) __Instance)->Comment = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool IsIncomplete |
|
|
|
|
{ |
|
|
|
|
get |
|
|
|
@ -3659,6 +3667,24 @@ namespace CppSharp
@@ -3659,6 +3667,24 @@ namespace CppSharp
|
|
|
|
|
((Internal*) __Instance)->OriginalPtr = (global::System.IntPtr) value; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public CppSharp.Parser.AST.RawComment Comment |
|
|
|
|
{ |
|
|
|
|
get |
|
|
|
|
{ |
|
|
|
|
CppSharp.Parser.AST.RawComment __result0; |
|
|
|
|
if (((Internal*) __Instance)->Comment == IntPtr.Zero) __result0 = null; |
|
|
|
|
else if (CppSharp.Parser.AST.RawComment.NativeToManagedMap.ContainsKey(((Internal*) __Instance)->Comment)) |
|
|
|
|
__result0 = (CppSharp.Parser.AST.RawComment) CppSharp.Parser.AST.RawComment.NativeToManagedMap[((Internal*) __Instance)->Comment]; |
|
|
|
|
else __result0 = CppSharp.Parser.AST.RawComment.__CreateInstance(((Internal*) __Instance)->Comment); |
|
|
|
|
return __result0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
((Internal*) __Instance)->Comment = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public unsafe partial class DeclarationContext : CppSharp.Parser.AST.Declaration, IDisposable |
|
|
|
@ -3684,9 +3710,6 @@ namespace CppSharp
@@ -3684,9 +3710,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -3705,6 +3728,9 @@ namespace CppSharp
@@ -3705,6 +3728,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(360)] |
|
|
|
|
public byte IsAnonymous; |
|
|
|
|
|
|
|
|
@ -4249,9 +4275,6 @@ namespace CppSharp
@@ -4249,9 +4275,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -4270,6 +4293,9 @@ namespace CppSharp
@@ -4270,6 +4293,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public CppSharp.Parser.AST.QualifiedType.Internal QualifiedType; |
|
|
|
|
|
|
|
|
@ -4389,9 +4415,6 @@ namespace CppSharp
@@ -4389,9 +4415,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -4410,6 +4433,9 @@ namespace CppSharp
@@ -4410,6 +4433,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public global::System.IntPtr Declaration; |
|
|
|
|
|
|
|
|
@ -5160,9 +5186,6 @@ namespace CppSharp
@@ -5160,9 +5186,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -5181,6 +5204,9 @@ namespace CppSharp
@@ -5181,6 +5204,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public CppSharp.Parser.AST.QualifiedType.Internal QualifiedType; |
|
|
|
|
|
|
|
|
@ -5369,9 +5395,6 @@ namespace CppSharp
@@ -5369,9 +5395,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -5390,6 +5413,9 @@ namespace CppSharp
@@ -5390,6 +5413,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public CppSharp.Parser.AST.QualifiedType.Internal ReturnType; |
|
|
|
|
|
|
|
|
@ -5784,9 +5810,6 @@ namespace CppSharp
@@ -5784,9 +5810,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -5805,6 +5828,9 @@ namespace CppSharp
@@ -5805,6 +5828,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public CppSharp.Parser.AST.QualifiedType.Internal ReturnType; |
|
|
|
|
|
|
|
|
@ -6101,9 +6127,6 @@ namespace CppSharp
@@ -6101,9 +6127,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -6122,6 +6145,9 @@ namespace CppSharp
@@ -6122,6 +6145,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(360)] |
|
|
|
|
public byte IsAnonymous; |
|
|
|
|
|
|
|
|
@ -6201,9 +6227,6 @@ namespace CppSharp
@@ -6201,9 +6227,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -6222,6 +6245,9 @@ namespace CppSharp
@@ -6222,6 +6245,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(128)] |
|
|
|
|
public ulong Value; |
|
|
|
|
|
|
|
|
@ -6513,9 +6539,6 @@ namespace CppSharp
@@ -6513,9 +6539,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -6534,6 +6557,9 @@ namespace CppSharp
@@ -6534,6 +6557,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(128)] |
|
|
|
|
public CppSharp.Parser.AST.QualifiedType.Internal QualifiedType; |
|
|
|
|
|
|
|
|
@ -6833,9 +6859,6 @@ namespace CppSharp
@@ -6833,9 +6859,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -6854,6 +6877,9 @@ namespace CppSharp
@@ -6854,6 +6877,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public CppSharp.Parser.AST.QualifiedType.Internal QualifiedType; |
|
|
|
|
|
|
|
|
@ -7042,9 +7068,6 @@ namespace CppSharp
@@ -7042,9 +7068,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -7063,6 +7086,9 @@ namespace CppSharp
@@ -7063,6 +7086,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[SuppressUnmanagedCodeSecurity] |
|
|
|
|
[DllImport("CppSharp.CppParser.dll", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.Cdecl, |
|
|
|
|
EntryPoint="_ZN8CppSharp9CppParser3AST19AccessSpecifierDeclC2Ev")] |
|
|
|
@ -7166,9 +7192,6 @@ namespace CppSharp
@@ -7166,9 +7192,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -7187,6 +7210,9 @@ namespace CppSharp
@@ -7187,6 +7210,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(360)] |
|
|
|
|
public byte IsAnonymous; |
|
|
|
|
|
|
|
|
@ -7670,9 +7696,6 @@ namespace CppSharp
@@ -7670,9 +7696,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -7691,6 +7714,9 @@ namespace CppSharp
@@ -7691,6 +7714,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public global::System.IntPtr TemplatedDecl; |
|
|
|
|
|
|
|
|
@ -7883,9 +7909,6 @@ namespace CppSharp
@@ -7883,9 +7909,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -7904,6 +7927,9 @@ namespace CppSharp
@@ -7904,6 +7927,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public uint Depth; |
|
|
|
|
|
|
|
|
@ -8056,9 +8082,6 @@ namespace CppSharp
@@ -8056,9 +8082,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -8077,6 +8100,9 @@ namespace CppSharp
@@ -8077,6 +8100,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public uint Depth; |
|
|
|
|
|
|
|
|
@ -8205,9 +8231,6 @@ namespace CppSharp
@@ -8205,9 +8231,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -8226,6 +8249,9 @@ namespace CppSharp
@@ -8226,6 +8249,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public uint Depth; |
|
|
|
|
|
|
|
|
@ -8407,9 +8433,6 @@ namespace CppSharp
@@ -8407,9 +8433,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -8428,6 +8451,9 @@ namespace CppSharp
@@ -8428,6 +8451,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public global::System.IntPtr TemplatedDecl; |
|
|
|
|
|
|
|
|
@ -8587,9 +8613,6 @@ namespace CppSharp
@@ -8587,9 +8613,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -8608,6 +8631,9 @@ namespace CppSharp
@@ -8608,6 +8631,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(360)] |
|
|
|
|
public byte IsAnonymous; |
|
|
|
|
|
|
|
|
@ -8830,9 +8856,6 @@ namespace CppSharp
@@ -8830,9 +8856,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -8851,6 +8874,9 @@ namespace CppSharp
@@ -8851,6 +8874,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(360)] |
|
|
|
|
public byte IsAnonymous; |
|
|
|
|
|
|
|
|
@ -8993,9 +9019,6 @@ namespace CppSharp
@@ -8993,9 +9019,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -9014,6 +9037,9 @@ namespace CppSharp
@@ -9014,6 +9037,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(120)] |
|
|
|
|
public global::System.IntPtr TemplatedDecl; |
|
|
|
|
|
|
|
|
@ -9374,9 +9400,6 @@ namespace CppSharp
@@ -9374,9 +9400,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -9395,6 +9418,9 @@ namespace CppSharp
@@ -9395,6 +9418,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(360)] |
|
|
|
|
public byte IsAnonymous; |
|
|
|
|
|
|
|
|
@ -9995,9 +10021,6 @@ namespace CppSharp
@@ -9995,9 +10021,6 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(24)] |
|
|
|
|
public int LineNumberEnd; |
|
|
|
|
|
|
|
|
|
[FieldOffset(40)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(56)] |
|
|
|
|
public byte IsIncomplete; |
|
|
|
|
|
|
|
|
@ -10016,6 +10039,9 @@ namespace CppSharp
@@ -10016,6 +10039,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(104)] |
|
|
|
|
public global::System.IntPtr OriginalPtr; |
|
|
|
|
|
|
|
|
|
[FieldOffset(112)] |
|
|
|
|
public global::System.IntPtr Comment; |
|
|
|
|
|
|
|
|
|
[FieldOffset(360)] |
|
|
|
|
public byte IsAnonymous; |
|
|
|
|
|
|
|
|
|