GetProcAddress function kernel32

Pointer<NativeType> GetProcAddress(
  1. int hModule,
  2. Pointer<Utf8> lpProcName
)

Retrieves the address of an exported function or variable from the specified dynamic-link library (DLL).

FARPROC GetProcAddress(
  HMODULE hModule,
  LPCSTR  lpProcName
);

Implementation

Pointer GetProcAddress(int hModule, Pointer<Utf8> lpProcName) =>
    _GetProcAddress(hModule, lpProcName);