FreeLibrary method

int FreeLibrary(
  1. Pointer<HINSTANCE__> hLibModule
)

Implementation

int FreeLibrary(
  ffi.Pointer<HINSTANCE__> hLibModule,
) {
  return (_FreeLibrary ??= _dylib
      .lookupFunction<_c_FreeLibrary, _dart_FreeLibrary>('FreeLibrary'))(
    hLibModule,
  );
}