1/* windres.rc: resources for Windows
2   Copyright (c) 2007-2009 Stuart Brady, Marek Januszewski
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13
14   You should have received a copy of the GNU General Public License along
15   with this program; if not, write to the Free Software Foundation, Inc.,
16   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18   Author contact information:
19
20   E-mail: philip-fuse@shadowmagic.org.uk
21
22*/
23
24#include <config.h>
25
26#include <windows.h>
27
28win32_icon ICON "data/win32/winfuse.ico"
29
30#ifdef UI_WIN32
31
32#include "ui/win32/about.rc"            /* reserved ids: 1800 - 1899 */
33#include "ui/win32/binary.rc"           /* reserved ids: 1300 - 1399 */
34#include "ui/win32/browse.rc"           /* reserved ids: 1400 - 1499 */
35#include "ui/win32/debugger.rc"         /* reserved ids: 2000 - 2099 */
36#include "ui/win32/memorybrowser.rc"    /* reserved ids: 4000 - 4099 */
37#include "ui/win32/menu_data.rc"        /* reserved ids: 100  - 899  */
38#include "ui/win32/options.rc"          /* reserved ids: 3000 - 3099 */
39#include "ui/win32/picture.rc"          /* reserved ids: 1200 - 1299 */
40#include "ui/win32/pokefinder.rc"       /* reserved ids: 1500 - 1599 */
41#include "ui/win32/pokemem.rc"          /* reserved ids: 1900 - 1999 */
42#include "ui/win32/rollback.rc"         /* reserved ids: 1600 - 1699 */
43#include "ui/win32/roms.rc"             /* reserved ids: 1100 - 1199 */
44#include "ui/win32/select_template.rc"  /* reserved ids: 1000 - 1099 */
45#include "ui/win32/statusbar.rc"        /* reserved ids: 900         */
46#include "ui/win32/win32joystick.rc"    /* reserved ids: 1700 - 1799 */
47
48#endif
49
50/* VERSIONINFO specs: http://msdn.microsoft.com/en-us/library/aa381058%28VS.85%29.aspx */
51VS_VERSION_INFO VERSIONINFO
52FILEVERSION    	FUSE_RC_VERSION
53PRODUCTVERSION 	FUSE_RC_VERSION
54FILEFLAGSMASK  	VS_FFI_FILEFLAGSMASK
55FILEFLAGS      	0x0L
56FILEOS         	VOS__WINDOWS32
57FILETYPE       	VFT_APP
58FILESUBTYPE    	VFT2_UNKNOWN
59BEGIN
60  BLOCK "StringFileInfo"
61  BEGIN
62    BLOCK "040904B0"
63    BEGIN
64      VALUE "CompanyName",      "\0"
65      VALUE "FileDescription",  "Fuse\0"
66      VALUE "FileVersion",      VERSION##"\0"
67      VALUE "InternalName",     "Fuse\0"
68      VALUE "LegalCopyright",   FUSE_COPYRIGHT##"\0"
69      VALUE "License",          "Fuse is licensed under the GNU General Public License, version 2 or later\0"
70      VALUE "OriginalFilename", "fuse.exe\0"
71      VALUE "ProductName",      "Fuse - the Free Unix Spectrum Emulator\0"
72      VALUE "ProductVersion",   VERSION##"\0"
73    END
74 END
75
76  BLOCK "VarFileInfo"
77  BEGIN
78    VALUE "Translation", 0x409, 1252
79  END
80END
81
82/* Reference a manifest for visual styles. It must happen at the end.
83   Visual Studio generates the manifest automatically */
84#ifdef __GNUC__
85CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "data/win32/fuse.manifest"
86#endif
87