SetThreadInformation method

int SetThreadInformation(
  1. Pointer<Void> hThread,
  2. int ThreadInformationClass,
  3. Pointer<Void> ThreadInformation,
  4. int ThreadInformationSize,
)

Implementation

int SetThreadInformation(
  ffi.Pointer<ffi.Void> hThread,
  int ThreadInformationClass,
  ffi.Pointer<ffi.Void> ThreadInformation,
  int ThreadInformationSize,
) {
  return _SetThreadInformation(
    hThread,
    ThreadInformationClass,
    ThreadInformation,
    ThreadInformationSize,
  );
}