Skip to content

Commit

Permalink
Regenerated the parser bindings.
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
  • Loading branch information
ddobrev committed Jul 12, 2017
1 parent 3a3d003 commit d996053
Show file tree
Hide file tree
Showing 12 changed files with 246 additions and 228 deletions.

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions src/CppParser/Bindings/CSharp/i686-apple-darwin12.4.0/Std.cs
Expand Up @@ -1268,7 +1268,7 @@ public unsafe partial struct __Internal
[SuppressUnmanagedCodeSecurity]
[DllImport("Std-symbols", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.Cdecl,
EntryPoint="_ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5c_strEv")]
internal static extern global::System.IntPtr CStrc__N_std_N___1_S_basic_string__C___N_std_N___1_S_char_traits__C___N_std_N___1_S_allocator__C_0(global::System.IntPtr instance);
internal static extern global::System.IntPtr CStrc__N_std_N___1_S_basic_string__C___N_std_N___1_S_char_traits__C___N_std_N___1_S_allocator__C(global::System.IntPtr instance);
}

internal enum ShortMask : uint
Expand Down Expand Up @@ -1456,10 +1456,13 @@ public virtual void Dispose(bool disposing)
__Instance = IntPtr.Zero;
}

public string CStr()
public string CStr
{
var __ret = global::Std.__1.BasicString.__Internal.CStrc__N_std_N___1_S_basic_string__C___N_std_N___1_S_char_traits__C___N_std_N___1_S_allocator__C_0((__Instance + __PointerAdjustment));
return Marshal.PtrToStringAnsi(__ret);
get
{
var __ret = global::Std.__1.BasicString.__Internal.CStrc__N_std_N___1_S_basic_string__C___N_std_N___1_S_char_traits__C___N_std_N___1_S_allocator__C((__Instance + __PointerAdjustment));
return Marshal.PtrToStringAnsi(__ret);
}
}
}

Expand Down

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions src/CppParser/Bindings/CSharp/i686-pc-win32-msvc/Std.cs
Expand Up @@ -498,7 +498,7 @@ public unsafe partial struct __Internal
[SuppressUnmanagedCodeSecurity]
[DllImport("Std-symbols", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.ThisCall,
EntryPoint="?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ")]
internal static extern global::System.IntPtr CStrc__N_std_S_basic_string__C___N_std_S_char_traits__C___N_std_S_allocator__C_0(global::System.IntPtr instance);
internal static extern global::System.IntPtr CStrc__N_std_S_basic_string__C___N_std_S_char_traits__C___N_std_S_allocator__C(global::System.IntPtr instance);
}

public global::System.IntPtr __Instance { get; protected set; }
Expand Down Expand Up @@ -569,10 +569,13 @@ public virtual void Dispose(bool disposing)
__Instance = IntPtr.Zero;
}

public string CStr()
public string CStr
{
var __ret = global::Std.BasicString.__Internal.CStrc__N_std_S_basic_string__C___N_std_S_char_traits__C___N_std_S_allocator__C_0((__Instance + __PointerAdjustment));
return Marshal.PtrToStringAnsi(__ret);
get
{
var __ret = global::Std.BasicString.__Internal.CStrc__N_std_S_basic_string__C___N_std_S_char_traits__C___N_std_S_allocator__C((__Instance + __PointerAdjustment));
return Marshal.PtrToStringAnsi(__ret);
}
}
}

Expand Down

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions src/CppParser/Bindings/CSharp/x86_64-apple-darwin12.4.0/Std.cs
Expand Up @@ -1268,7 +1268,7 @@ public unsafe partial struct __Internal
[SuppressUnmanagedCodeSecurity]
[DllImport("Std-symbols", CallingConvention = global::System.Runtime.InteropServices.CallingConvention.Cdecl,
EntryPoint="_ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5c_strEv")]
internal static extern global::System.IntPtr CStrc__N_std_N___1_S_basic_string__C___N_std_N___1_S_char_traits__C___N_std_N___1_S_allocator__C_0(global::System.IntPtr instance);
internal static extern global::System.IntPtr CStrc__N_std_N___1_S_basic_string__C___N_std_N___1_S_char_traits__C___N_std_N___1_S_allocator__C(global::System.IntPtr instance);
}

internal enum ShortMask : uint
Expand Down Expand Up @@ -1456,10 +1456,13 @@ public virtual void Dispose(bool disposing)
__Instance = IntPtr.Zero;
}

public string CStr()
public string CStr
{
var __ret = global::Std.__1.BasicString.__Internal.CStrc__N_std_N___1_S_basic_string__C___N_std_N___1_S_char_traits__C___N_std_N___1_S_allocator__C_0((__Instance + __PointerAdjustment));
return Marshal.PtrToStringAnsi(__ret);
get
{
var __ret = global::Std.__1.BasicString.__Internal.CStrc__N_std_N___1_S_basic_string__C___N_std_N___1_S_char_traits__C___N_std_N___1_S_allocator__C((__Instance + __PointerAdjustment));
return Marshal.PtrToStringAnsi(__ret);
}
}
}

Expand Down

0 comments on commit d996053

Please sign in to comment.