|
|
|
@ -5641,7 +5641,7 @@ namespace CppSharp
@@ -5641,7 +5641,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public unsafe partial class BaseClassSpecifier : IDisposable |
|
|
|
|
{ |
|
|
|
|
[StructLayout(LayoutKind.Explicit, Size = 12)] |
|
|
|
|
[StructLayout(LayoutKind.Explicit, Size = 16)] |
|
|
|
|
public partial struct Internal |
|
|
|
|
{ |
|
|
|
|
[FieldOffset(0)] |
|
|
|
@ -5653,6 +5653,9 @@ namespace CppSharp
@@ -5653,6 +5653,9 @@ namespace CppSharp
|
|
|
|
|
[FieldOffset(8)] |
|
|
|
|
public global::System.IntPtr Type; |
|
|
|
|
|
|
|
|
|
[FieldOffset(12)] |
|
|
|
|
public int Offset; |
|
|
|
|
|
|
|
|
|
[SuppressUnmanagedCodeSecurity] |
|
|
|
|
[DllImport("CppSharp.CppParser.dll", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.ThisCall, |
|
|
|
|
EntryPoint="??0BaseClassSpecifier@AST@CppParser@CppSharp@@QAE@XZ")] |
|
|
|
@ -5680,7 +5683,7 @@ namespace CppSharp
@@ -5680,7 +5683,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
private static BaseClassSpecifier.Internal* __CopyValue(BaseClassSpecifier.Internal native) |
|
|
|
|
{ |
|
|
|
|
var ret = (BaseClassSpecifier.Internal*) Marshal.AllocHGlobal(12); |
|
|
|
|
var ret = (BaseClassSpecifier.Internal*) Marshal.AllocHGlobal(16); |
|
|
|
|
*ret = native; |
|
|
|
|
return ret; |
|
|
|
|
} |
|
|
|
@ -5698,7 +5701,7 @@ namespace CppSharp
@@ -5698,7 +5701,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public BaseClassSpecifier() |
|
|
|
|
{ |
|
|
|
|
__Instance = Marshal.AllocHGlobal(12); |
|
|
|
|
__Instance = Marshal.AllocHGlobal(16); |
|
|
|
|
__ownsNativeInstance = true; |
|
|
|
|
Internal.ctor_0(__Instance); |
|
|
|
|
} |
|
|
|
@ -5755,6 +5758,19 @@ namespace CppSharp
@@ -5755,6 +5758,19 @@ namespace CppSharp
|
|
|
|
|
((Internal*) __Instance)->Type = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int Offset |
|
|
|
|
{ |
|
|
|
|
get |
|
|
|
|
{ |
|
|
|
|
return ((Internal*) __Instance)->Offset; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
((Internal*) __Instance)->Offset = value; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public unsafe partial class Field : CppSharp.Parser.AST.Declaration, IDisposable |
|
|
|
|