mirror of
https://github.com/Sarsoo/csbindgen.git
synced 2024-12-22 22:46:26 +00:00
Add sample case
This commit is contained in:
parent
dd6330a573
commit
c27e01bd90
14
csbindgen-tests/src/lib.rs
vendored
14
csbindgen-tests/src/lib.rs
vendored
@ -606,6 +606,20 @@ pub struct CallbackTable {
|
|||||||
pub foobar: extern "C" fn(i: i32) -> i32,
|
pub foobar: extern "C" fn(i: i32) -> i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub struct InternalHiddenContext {
|
||||||
|
pub a: i32
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct TreatAsEmptyStruct {
|
||||||
|
internal: std::sync::Arc<InternalHiddenContext>
|
||||||
|
}
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe extern "C" fn init_treat_as_empty_struct_context(_out: NonNull<Box<TreatAsEmptyStruct>>) {}
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe extern "C" fn free_treat_as_empty_struct_context(_src: *mut TreatAsEmptyStruct) {}
|
||||||
|
|
||||||
// fn run_physix(){
|
// fn run_physix(){
|
||||||
// unsafe {
|
// unsafe {
|
||||||
// let foundation = physx_create_foundation();
|
// let foundation = physx_create_foundation();
|
||||||
|
11
dotnet-sandbox/NativeMethods.cs
vendored
11
dotnet-sandbox/NativeMethods.cs
vendored
@ -176,6 +176,12 @@ namespace CsBindgen
|
|||||||
[DllImport(__DllName, EntryPoint = "call_bindgen_lz4", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true)]
|
[DllImport(__DllName, EntryPoint = "call_bindgen_lz4", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true)]
|
||||||
public static extern void call_bindgen_lz4();
|
public static extern void call_bindgen_lz4();
|
||||||
|
|
||||||
|
[DllImport(__DllName, EntryPoint = "init_treat_as_empty_struct_context", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true)]
|
||||||
|
public static extern void init_treat_as_empty_struct_context(TreatAsEmptyStruct** _out);
|
||||||
|
|
||||||
|
[DllImport(__DllName, EntryPoint = "free_treat_as_empty_struct_context", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true)]
|
||||||
|
public static extern void free_treat_as_empty_struct_context(TreatAsEmptyStruct* _src);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,6 +266,11 @@ namespace CsBindgen
|
|||||||
public delegate* unmanaged[Cdecl]<int, int> foobar;
|
public delegate* unmanaged[Cdecl]<int, int> foobar;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
|
internal unsafe partial struct TreatAsEmptyStruct
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
[Flags]
|
[Flags]
|
||||||
internal enum EnumFlags : uint
|
internal enum EnumFlags : uint
|
||||||
|
Loading…
Reference in New Issue
Block a user