GetExitCodeThread method

int GetExitCodeThread(
  1. Pointer<Void> hThread,
  2. Pointer<Uint64> lpExitCode
)

Implementation

int GetExitCodeThread(
  ffi.Pointer<ffi.Void> hThread,
  ffi.Pointer<ffi.Uint64> lpExitCode,
) {
  return _GetExitCodeThread(
    hThread,
    lpExitCode,
  );
}