FreeLibraryAndExitThread method

void FreeLibraryAndExitThread(
  1. Pointer<HINSTANCE__> hLibModule,
  2. int dwExitCode
)

Implementation

void FreeLibraryAndExitThread(
  ffi.Pointer<HINSTANCE__> hLibModule,
  int dwExitCode,
) {
  return _FreeLibraryAndExitThread(
    hLibModule,
    dwExitCode,
  );
}