EnumResourceLanguages

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

Microsoft documentation: Link

Last updated