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 ??=
      _dylib.lookupFunction<_c_GetExitCodeThread, _dart_GetExitCodeThread>(
          'GetExitCodeThread'))(
    hThread,
    lpExitCode,
  );
}