FindResource function kernel32

int FindResource(
  1. int hModule,
  2. Pointer<Utf16> lpName,
  3. Pointer<Utf16> lpType
)

Determines the location of a resource with the specified type and name in the specified module.

HRSRC FindResourceW(
  HMODULE hModule,
  LPCWSTR  lpName,
  LPCWSTR  lpType
);

Implementation

int FindResource(int hModule, Pointer<Utf16> lpName, Pointer<Utf16> lpType) =>
    _FindResource(hModule, lpName, lpType);