FindResource function kernel32
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);