QueryUmsThreadInformation method

int QueryUmsThreadInformation(
  1. Pointer<Void> UmsThread,
  2. int UmsThreadInfoClass,
  3. Pointer<Void> UmsThreadInformation,
  4. int UmsThreadInformationLength,
  5. Pointer<Uint64> ReturnLength,
)

Implementation

int QueryUmsThreadInformation(
  ffi.Pointer<ffi.Void> UmsThread,
  int UmsThreadInfoClass,
  ffi.Pointer<ffi.Void> UmsThreadInformation,
  int UmsThreadInformationLength,
  ffi.Pointer<ffi.Uint64> ReturnLength,
) {
  return _QueryUmsThreadInformation(
    UmsThread,
    UmsThreadInfoClass,
    UmsThreadInformation,
    UmsThreadInformationLength,
    ReturnLength,
  );
}