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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/* windres.rc: resources for Windows
Copyright (c) 2007-2009 Stuart Brady, Marek Januszewski
$Id: windres.rc 4158 2010-09-12 11:49:10Z fredm $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#include "config.h"
#include <windows.h>
win32_icon ICON "winfuse.ico"
#ifdef UI_WIN32
#include "ui/win32/binary.rc" /* reserved ids: 1300 - 1399 */
#include "ui/win32/browse.rc" /* reserved ids: 1400 - 1499 */
#include "ui/win32/debugger.rc" /* reserved ids: 2000 - 2099 */
#include "ui/win32/memorybrowser.rc" /* reserved ids: 4000 - 4099 */
#include "ui/win32/menu_data.rc" /* reserved ids: 100 - 899 */
#include "ui/win32/options.rc" /* reserved ids: 3000 - 3099 */
#include "ui/win32/picture.rc" /* reserved ids: 1200 - 1299 */
#include "ui/win32/pokefinder.rc" /* reserved ids: 1500 - 1599 */
#include "ui/win32/rollback.rc" /* reserved ids: 1600 - 1699 */
#include "ui/win32/roms.rc" /* reserved ids: 1100 - 1199 */
#include "ui/win32/select_template.rc" /* reserved ids: 1000 - 1099 */
#include "ui/win32/statusbar.rc" /* reserved ids: 900 */
#include "ui/win32/win32joystick.rc" /* reserved ids: 1700 - 1799 */
#endif
/* VERSIONINFO specs: http://msdn.microsoft.com/en-us/library/aa381058%28VS.85%29.aspx */
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_WIN32
PRODUCTVERSION VERSION_WIN32
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0x0L
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0"
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "Fuse\0"
VALUE "FileVersion", VERSION##"\0"
VALUE "InternalName", "Fuse\0"
VALUE "LegalCopyright", "Copyright (c) 1999-2009 Philip Kendall and others; see the file 'AUTHORS' for more details.\0"
VALUE "License", "Fuse is licensed under the GNU General Public License, version 2 or later\0"
VALUE "OriginalFilename", "fuse.exe\0"
VALUE "ProductName", "Fuse - the Free Unix Spectrum Emulator\0"
VALUE "ProductVersion", VERSION##"\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END
|