EnumResourceNames function kernel32

int EnumResourceNames(
  1. int hModule,
  2. Pointer<Utf16> lpType,
  3. Pointer<NativeFunction<ENUMRESNAMEPROC>> lpEnumFunc,
  4. int lParam
)

Enumerates resources of a specified type within a binary module. For Windows Vista and later, this is typically a language-neutral Portable Executable (LN file), and the enumeration will also include resources from the corresponding language-specific resource files (.mui files) that contain localizable language resources. It is also possible for hModule to specify an .mui file, in which case only that file is searched for resources.

BOOL EnumResourceNamesW(
  HMODULE          hModule,
  LPCWSTR          lpType,
  ENUMRESNAMEPROCW lpEnumFunc,
  LONG_PTR         lParam
);

Implementation

int EnumResourceNames(int hModule, Pointer<Utf16> lpType,
        Pointer<NativeFunction<ENUMRESNAMEPROC>> lpEnumFunc, int lParam) =>
    _EnumResourceNames(hModule, lpType, lpEnumFunc, lParam);