mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-10-31 06:03:49 +01:00 
			
		
		
		
	Using LAME 3.10 Windows project files substantially changed from original, and included into audacity solution.
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #include <winver.h>
 | |
| #include "version.h"
 | |
| 
 | |
| #ifdef _DLL
 | |
| IDI_ICON1		ICON		DISCARDABLE	"logoe.ico"
 | |
| #else
 | |
| IDI_ICON1		ICON		DISCARDABLE	"logoe.ico"
 | |
| #endif
 | |
| 
 | |
| VS_VERSION_INFO VERSIONINFO
 | |
| 	FILEVERSION LAME_MAJOR_VERSION,LAME_MINOR_VERSION,LAME_TYPE_VERSION,LAME_PATCH_VERSION
 | |
| 	PRODUCTVERSION LAME_MAJOR_VERSION,LAME_MINOR_VERSION,LAME_TYPE_VERSION,LAME_PATCH_VERSION
 | |
| 	FILEFLAGSMASK 0x3fL
 | |
| #ifdef _DEBUG
 | |
| 	FILEFLAGS VS_FF_DEBUG
 | |
| #else
 | |
| 	FILEFLAGS 0x0L
 | |
| #endif
 | |
| 	FILEOS VOS__WINDOWS32
 | |
| #ifdef _DLL
 | |
| 	FILETYPE VFT_DLL
 | |
| #else
 | |
| 	FILETYPE VFT_APP
 | |
| #endif
 | |
| 	FILESUBTYPE 0x0L
 | |
| 	BEGIN
 | |
| 		BLOCK "StringFileInfo"
 | |
| 		BEGIN
 | |
| 			BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
 | |
| 			BEGIN
 | |
| 				VALUE "CompanyName", LAME_URL "\0"
 | |
| 				VALUE "FileDescription", "MP3 Encoder.\0"
 | |
| 				VALUE "FileVersion", LAME_VERSION_STRING "\0"
 | |
| 				VALUE "LegalCopyright", "Copyright (C) 1999-2011 The L.A.M.E. Team\0"
 | |
| #ifdef _DLL
 | |
| 				VALUE "OriginalFilename", STR(_DLL) "\0"
 | |
| #else
 | |
| 				VALUE "OriginalFilename", STR(_APP) "\0"
 | |
| #endif
 | |
| 				VALUE "ProductName", "L.A.M.E.\0"
 | |
| 				VALUE "ProductVersion", LAME_VERSION_STRING "\0"
 | |
| 			END
 | |
| 		END
 | |
| 		BLOCK "VarFileInfo" 
 | |
| 		BEGIN
 | |
| 			VALUE "Translation", 0x409, 1252 // mandatory by convention
 | |
| 		END
 | |
| 	END
 | |
| /* End of Version info */
 | |
| 
 |