EnumResourceTypes

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool EnumResourceTypes(
   IntPtr hModule,
   EnumResTypeProc lpEnumFunc,
   IntPtr lParam
);

Microsoft documentation: Link

Last updated