GetHandleInformation method
Implementation
int GetHandleInformation(
ffi.Pointer<ffi.Void> hObject,
ffi.Pointer<ffi.Uint64> lpdwFlags,
) {
return (_GetHandleInformation ??= _dylib.lookupFunction<
_c_GetHandleInformation,
_dart_GetHandleInformation>('GetHandleInformation'))(
hObject,
lpdwFlags,
);
}