FindResourceEx function Null safety kernel32
Determines the location of the resource with the specified type, name, and language in the specified module.
HRSRC FindResourceExW(
HMODULE hModule,
LPCWSTR lpType,
LPCWSTR lpName,
WORD wLanguage
);
Implementation
int FindResourceEx(int hModule, Pointer<Utf16> lpType, Pointer<Utf16> lpName,
int wLanguage) =>
_FindResourceEx(hModule, lpType, lpName, wLanguage);