GetProcAddress method

Pointer<NativeFunction<FARPROC>> GetProcAddress(
  1. Pointer<HINSTANCE__> hModule,
  2. Pointer<Int8> lpProcName
)

Implementation

ffi.Pointer<ffi.NativeFunction<FARPROC>> GetProcAddress(
  ffi.Pointer<HINSTANCE__> hModule,
  ffi.Pointer<ffi.Int8> lpProcName,
) {
  return _GetProcAddress(
    hModule,
    lpProcName,
  );
}