source: smplayer/trunk/src/smplayer.rc@ 165

Last change on this file since 165 was 165, checked in by Silvan Scherrer, 11 years ago

SMPlayer: update trunk to latest 0.8.7

File size: 1.4 KB
Line 
1#include <winver.h>
2
3#if HAVE_SVN_REVISION_H
4#include "svn_revision.h"
5#endif
6
7#define SMPLAYER_FILEVERSION 14,3,0,0
8#define SMPLAYER_PRODVERSION "14.3.0.0"
9
10VS_VERSION_INFO VERSIONINFO
11FILEVERSION SMPLAYER_FILEVERSION
12PRODUCTVERSION SMPLAYER_FILEVERSION
13FILEOS VOS_NT_WINDOWS32
14FILETYPE VFT_APP
15{
16 BLOCK "StringFileInfo"
17 {
18 BLOCK "000004b0"
19 {
20 VALUE "CompanyName", "Ricardo Villalba\0"
21 #ifdef PORTABLE_APP
22 VALUE "FileDescription", "SMPlayer (Portable Edition)\0"
23 #else
24 VALUE "FileDescription", "SMPlayer\0"
25 #endif
26 VALUE "FileVersion", SMPLAYER_PRODVERSION "\0"
27 VALUE "InternalName", "smplayer\0"
28 VALUE "LegalCopyright", "Copyright (c) Ricardo Villalba\0"
29 VALUE "OriginalFilename", "smplayer.exe\0"
30 #if defined(_WIN64)
31 VALUE "ProductName", "SMPlayer for Windows (64-bit)\0"
32 #elif defined(_WIN32) && !defined(_WIN64)
33 VALUE "ProductName", "SMPlayer for Windows (32-bit)\0"
34 #endif
35 #if HAVE_SVN_REVISION_H
36 VALUE "ProductVersion", SMPLAYER_PRODVERSION "+SVN-r" SVN_REVISION "\0"
37 #else
38 VALUE "ProductVersion", SMPLAYER_PRODVERSION "\0"
39 #endif
40 }
41 }
42 BLOCK "VarFileInfo"
43 {
44 VALUE "Translation", 0, 0x04b0
45 }
46}
47
48IDI_ICON1 ICON DISCARDABLE "smplayer.ico"
49IDI_ICON2 ICON DISCARDABLE "smplayer_associations.ico"
Note: See TracBrowser for help on using the repository browser.