GetModuleHandle function kernel32

int GetModuleHandle(
  1. Pointer<Utf16> lpModuleName
)

Retrieves a module handle for the specified module. The module must have been loaded by the calling process.

HMODULE GetModuleHandleW(
  LPCWSTR lpModuleName
);

Implementation

int GetModuleHandle(Pointer<Utf16> lpModuleName) =>
    _GetModuleHandle(lpModuleName);