-
Notifications
You must be signed in to change notification settings - Fork 0
COM ABI Infodump
MaulingMonkey edited this page Feb 6, 2024
·
1 revision
- Returned C struct FFI
- Misc. COM ABI
- XFG
// line 45
#ifndef DECLSPEC_XFGVIRT
#if defined(_CONTROL_FLOW_GUARD_XFG)
#define DECLSPEC_XFGVIRT(base, func) __declspec(xfg_virtual(base, func))
#else
#define DECLSPEC_XFGVIRT(base, func)
#endif
#endif
// line 4380
DECLSPEC_XFGVIRT(ID3D12Heap, GetDesc)
D3D12_HEAP_DESC *( STDMETHODCALLTYPE *GetDesc )(
ID3D12Heap * This,
D3D12_HEAP_DESC * RetVal);
// line 4426
#define ID3D12Heap_GetDesc(This,RetVal) \
( (This)->lpVtbl -> GetDesc(This,RetVal) )
// line 3870
D3D12_HEAP_DESC ( STDMETHODCALLTYPE *GetDesc )(
ID3D12Heap * This);
// line 3914
#define ID3D12Heap_GetDesc(This) \
( (This)->lpVtbl -> GetDesc(This) )