 c4d8575c30
			
		
	
	c4d8575c30
	
	
	
		
			
			The rc.exe that comes with the Windows 11 SDK does not allow one to include winuser.h directly in the .rc scripts, so make sure that we do not try to generate the final gtk.rc with it, but instead include windows.h with WIN32_LEAN_AND_MEAN defined.
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #define WIN32_LEAN_AND_MEAN
 | |
| #include <windows.h>
 | |
| 
 | |
| VS_VERSION_INFO VERSIONINFO
 | |
|   FILEVERSION @GTK_MAJOR_VERSION@,@GTK_MINOR_VERSION@,@GTK_MICRO_VERSION@,0
 | |
|   PRODUCTVERSION @GTK_MAJOR_VERSION@,@GTK_MINOR_VERSION@,@GTK_MICRO_VERSION@,0
 | |
|   FILEFLAGSMASK 0
 | |
|   FILEFLAGS 0
 | |
|   FILEOS VOS__WINDOWS32
 | |
|   FILETYPE VFT_DLL
 | |
|   FILESUBTYPE VFT2_UNKNOWN
 | |
|   BEGIN
 | |
|     BLOCK "StringFileInfo"
 | |
|     BEGIN
 | |
|       BLOCK "040904B0"
 | |
|       BEGIN
 | |
| 	VALUE "CompanyName", "The GTK developer community"
 | |
| 	VALUE "FileDescription", "GIMP Toolkit"
 | |
| 	VALUE "FileVersion", "@GTK_VERSION@.0"
 | |
| 	VALUE "InternalName", "libgtk-win32-@GTK_API_VERSION@-@LT_CURRENT_MINUS_AGE@"
 | |
| 	VALUE "LegalCopyright", "Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald. Modified by the GTK+ Team and others 1997-2011."
 | |
| 	VALUE "OriginalFilename", "libgtk-win32-@GTK_API_VERSION@-@LT_CURRENT_MINUS_AGE@.dll"
 | |
| 	VALUE "ProductName", "GTK+"
 | |
| 	VALUE "ProductVersion", "@GTK_VERSION@"
 | |
|       END
 | |
|     END
 | |
|     BLOCK "VarFileInfo"
 | |
|     BEGIN
 | |
|       VALUE "Translation", 0x409, 1200
 | |
|     END
 | |
|   END
 |