1159b3361Sopenharmony_ci#include <winver.h>
2159b3361Sopenharmony_ci#include "version.h"
3159b3361Sopenharmony_ci
4159b3361Sopenharmony_ci#ifdef _DLL
5159b3361Sopenharmony_ciIDI_ICON1		ICON		DISCARDABLE	"logoe.ico"
6159b3361Sopenharmony_ci#else
7159b3361Sopenharmony_ciIDI_ICON1		ICON		DISCARDABLE	"logoe.ico"
8159b3361Sopenharmony_ci#endif
9159b3361Sopenharmony_ci
10159b3361Sopenharmony_ciVS_VERSION_INFO VERSIONINFO
11159b3361Sopenharmony_ci	FILEVERSION LAME_MAJOR_VERSION,LAME_MINOR_VERSION,LAME_TYPE_VERSION,LAME_PATCH_VERSION
12159b3361Sopenharmony_ci	PRODUCTVERSION LAME_MAJOR_VERSION,LAME_MINOR_VERSION,LAME_TYPE_VERSION,LAME_PATCH_VERSION
13159b3361Sopenharmony_ci	FILEFLAGSMASK 0x3fL
14159b3361Sopenharmony_ci#ifdef _DEBUG
15159b3361Sopenharmony_ci	FILEFLAGS VS_FF_DEBUG
16159b3361Sopenharmony_ci#else
17159b3361Sopenharmony_ci	FILEFLAGS 0x0L
18159b3361Sopenharmony_ci#endif
19159b3361Sopenharmony_ci	FILEOS VOS__WINDOWS32
20159b3361Sopenharmony_ci#ifdef _DLL
21159b3361Sopenharmony_ci	FILETYPE VFT_DLL
22159b3361Sopenharmony_ci#else
23159b3361Sopenharmony_ci	FILETYPE VFT_APP
24159b3361Sopenharmony_ci#endif
25159b3361Sopenharmony_ci	FILESUBTYPE 0x0L
26159b3361Sopenharmony_ci	BEGIN
27159b3361Sopenharmony_ci		BLOCK "StringFileInfo"
28159b3361Sopenharmony_ci		BEGIN
29159b3361Sopenharmony_ci			BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
30159b3361Sopenharmony_ci			BEGIN
31159b3361Sopenharmony_ci				VALUE "CompanyName", LAME_URL "\0"
32159b3361Sopenharmony_ci				VALUE "FileDescription", "MP3 Encoder.\0"
33159b3361Sopenharmony_ci				VALUE "FileVersion", LAME_VERSION_STRING "\0"
34159b3361Sopenharmony_ci				VALUE "LegalCopyright", "Copyright (C) 1999-2011 The L.A.M.E. Team\0"
35159b3361Sopenharmony_ci#ifdef _DLL
36159b3361Sopenharmony_ci				VALUE "OriginalFilename", STR(_DLL) "\0"
37159b3361Sopenharmony_ci#else
38159b3361Sopenharmony_ci				VALUE "OriginalFilename", STR(_APP) "\0"
39159b3361Sopenharmony_ci#endif
40159b3361Sopenharmony_ci				VALUE "ProductName", "L.A.M.E.\0"
41159b3361Sopenharmony_ci				VALUE "ProductVersion", LAME_VERSION_STRING "\0"
42159b3361Sopenharmony_ci			END
43159b3361Sopenharmony_ci		END
44159b3361Sopenharmony_ci		BLOCK "VarFileInfo" 
45159b3361Sopenharmony_ci		BEGIN
46159b3361Sopenharmony_ci			VALUE "Translation", 0x409, 1252 // mandatory by convention
47159b3361Sopenharmony_ci		END
48159b3361Sopenharmony_ci	END
49159b3361Sopenharmony_ci/* End of Version info */
50159b3361Sopenharmony_ci
51