Skip to content

Commit

Permalink
standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Oct 9, 2024
1 parent 09b164c commit 3339974
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions crates/tests/misc/standalone/src/b_vtbl_2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ pub const IID_IInspectable: GUID = GUID::from_u128(0xaf86e2e0_b12d_4c6a_9c5a_d7a
pub struct IInspectable_Vtbl {
pub base: IUnknown_Vtbl,
pub GetIids: unsafe extern "system" fn(
this: *mut std::ffi::c_void,
this: *mut core::ffi::c_void,
count: *mut u32,
values: *mut *mut GUID,
) -> HRESULT,
pub GetRuntimeClassName: unsafe extern "system" fn(
this: *mut std::ffi::c_void,
value: *mut *mut std::ffi::c_void,
this: *mut core::ffi::c_void,
value: *mut *mut core::ffi::c_void,
) -> HRESULT,
pub GetTrustLevel:
unsafe extern "system" fn(this: *mut std::ffi::c_void, value: *mut i32) -> HRESULT,
unsafe extern "system" fn(this: *mut core::ffi::c_void, value: *mut i32) -> HRESULT,
}
pub const IID_IUnknown: GUID = GUID::from_u128(0x00000000_0000_0000_c000_000000000046);
#[repr(C)]
Expand Down
8 changes: 4 additions & 4 deletions crates/tests/misc/standalone/src/b_vtbl_3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ pub const IID_IInspectable: GUID = GUID::from_u128(0xaf86e2e0_b12d_4c6a_9c5a_d7a
pub struct IInspectable_Vtbl {
pub base: IUnknown_Vtbl,
pub GetIids: unsafe extern "system" fn(
this: *mut std::ffi::c_void,
this: *mut core::ffi::c_void,
count: *mut u32,
values: *mut *mut GUID,
) -> HRESULT,
pub GetRuntimeClassName: unsafe extern "system" fn(
this: *mut std::ffi::c_void,
value: *mut *mut std::ffi::c_void,
this: *mut core::ffi::c_void,
value: *mut *mut core::ffi::c_void,
) -> HRESULT,
pub GetTrustLevel:
unsafe extern "system" fn(this: *mut std::ffi::c_void, value: *mut i32) -> HRESULT,
unsafe extern "system" fn(this: *mut core::ffi::c_void, value: *mut i32) -> HRESULT,
}
pub const IID_IStringable: GUID = GUID::from_u128(0x96369f54_8eb6_48f0_abce_c1b211e627c3);
#[repr(C)]
Expand Down

0 comments on commit 3339974

Please sign in to comment.