AdjustTokenGroups method
int
AdjustTokenGroups(
- Pointer<
Void> TokenHandle, - int ResetToDefault,
- Pointer<
PTOKEN_GROUPS> NewState, - int BufferLength,
- Pointer<
PTOKEN_GROUPS> PreviousState, - Pointer<
Uint64> ReturnLength,
Implementation
int AdjustTokenGroups(
ffi.Pointer<ffi.Void> TokenHandle,
int ResetToDefault,
ffi.Pointer<PTOKEN_GROUPS> NewState,
int BufferLength,
ffi.Pointer<PTOKEN_GROUPS> PreviousState,
ffi.Pointer<ffi.Uint64> ReturnLength,
) {
return (_AdjustTokenGroups ??=
_dylib.lookupFunction<_c_AdjustTokenGroups, _dart_AdjustTokenGroups>(
'AdjustTokenGroups'))(
TokenHandle,
ResetToDefault,
NewState,
BufferLength,
PreviousState,
ReturnLength,
);
}