enumObjects method
Implementation
int enumObjects(
int hwnd,
int grfFlags,
Pointer<Pointer<COMObject>> ppenumIDList,
) => (ptr.ref.vtable + 4)
.cast<
Pointer<
NativeFunction<
Int32 Function(
Pointer,
IntPtr hwnd,
Uint32 grfFlags,
Pointer<Pointer<COMObject>> ppenumIDList,
)
>
>
>()
.value
.asFunction<
int Function(
Pointer,
int hwnd,
int grfFlags,
Pointer<Pointer<COMObject>> ppenumIDList,
)
>()(ptr.ref.lpVtbl, hwnd, grfFlags, ppenumIDList);