1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
// GPL code based on mplayer.rc file from MPlayer Linux Movie Player GPL source - http://www.mplayerhq.hu
/*Windows resource file for MLdonkey
compile with
windres -o resfile.o mldonkey.rc
and add resfile.o to OBJS_MPLAYER in Makefile*/
#include <winver.h>
// #include "version.h"
1 VERSIONINFO
FILEVERSION @MAJOR_VERSION@,@MINOR_VERSION@,@SUB_VERSION@,0
PRODUCTVERSION @MAJOR_VERSION@,@MINOR_VERSION@,@SUB_VERSION@,0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
{
BLOCK "StringFileInfo"
{
BLOCK "000004b0" // LANG_NEUTRAL,UNICODE_CP
{
VALUE "Comments", "MLdonkey is distributed under the terms of the GNU General Public License Version 2. Sourcecode is available at http://mldonkey.sf.net"
VALUE "CompanyName", "MLdonkey team, http://mldonkey.sf.net"
VALUE "FileDescription", "MLdonkey - multiuser P2P daemon"
VALUE "FileVersion", "@MLDONKEY_VERSION@"
VALUE "InternalName", "MLdonkey"
VALUE "LegalCopyright", "Copyright 2000-2006 MLdonkey team (see README)"
VALUE "OriginalFilename", "mlnet.exe"
VALUE "ProductName", "MLdonkey - multiuser P2P daemon"
VALUE "ProductVersion", "@MLDONKEY_VERSION@"
VALUE "SpecialBuild", ""
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation",0,0x04b0
}
}
IDI_ICON1 ICON DISCARDABLE "config/mldonkey.ico"
|