GetUmsSystemThreadInformation method

int GetUmsSystemThreadInformation(
  1. Pointer<Void> ThreadHandle,
  2. Pointer<PUMS_SYSTEM_THREAD_INFORMATION> SystemThreadInfo
)

Implementation

int GetUmsSystemThreadInformation(
  ffi.Pointer<ffi.Void> ThreadHandle,
  ffi.Pointer<PUMS_SYSTEM_THREAD_INFORMATION> SystemThreadInfo,
) {
  return (_GetUmsSystemThreadInformation ??= _dylib.lookupFunction<
      _c_GetUmsSystemThreadInformation,
      _dart_GetUmsSystemThreadInformation>('GetUmsSystemThreadInformation'))(
    ThreadHandle,
    SystemThreadInfo,
  );
}