FreeLibraryAndExitThread method
Implementation
void FreeLibraryAndExitThread(
ffi.Pointer<HINSTANCE__> hLibModule,
int dwExitCode,
) {
return (_FreeLibraryAndExitThread ??= _dylib.lookupFunction<
_c_FreeLibraryAndExitThread,
_dart_FreeLibraryAndExitThread>('FreeLibraryAndExitThread'))(
hLibModule,
dwExitCode,
);
}