Bug 568276: Check for strange-variable-combination regression. (r=brendan)
[mozilla-central.git] / browser / app / splash.rc
blob2b5acefce083022cfc300cc33a78074e0770d6c8
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is Mozilla Communicator client code.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communications Corporation.
19  * Portions created by the Initial Developer are Copyright (C) 1998
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   Bill Law       law@netscape.com
24  *   Jonathan Wilson <jonwil@tpgi.com.au>
25  *
26  * Alternatively, the contents of this file may be used under the terms of
27  * either the GNU General Public License Version 2 or later (the "GPL"), or
28  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29  * in which case the provisions of the GPL or the LGPL are applicable instead
30  * of those above. If you wish to allow use of your version of this file only
31  * under the terms of either the GPL or the LGPL, and not to allow others to
32  * use your version of this file under the terms of the MPL, indicate your
33  * decision by deleting the provisions above and replace them with the notice
34  * and other provisions required by the GPL or the LGPL. If you do not delete
35  * the provisions above, a recipient may use your version of this file under
36  * the terms of any one of the MPL, the GPL or the LGPL.
37  *
38  * ***** END LICENSE BLOCK ***** */
39 #include <windows.h>
40 #include "nsNativeAppSupportWin.h"
42 1 24 "firefox.exe.manifest"
44 IDI_APPICON ICON FIREFOX_ICO
45 IDI_DOCUMENT ICON DOCUMENT_ICO
46 IDI_APPLICATION ICON FIREFOX_ICO
48 STRINGTABLE DISCARDABLE
49 BEGIN
50     IDS_STARTMENU_APPNAME,              "@MOZ_APP_DISPLAYNAME@"
51 END
53 #ifdef MOZ_STATIC_BUILD
55 // XXX This code is copied from resource.h and widget.rc.  It's a work-around
56 // for the limitation that only one resource file can be used in an .exe.  We
57 // should develop a method, for static builds only, to combine multiple .rc
58 // files into a single .rc file, and then use that to build the single .res
59 // file for the .exe.
61 #define IDC_GRAB                        4101
62 #define IDC_GRABBING                    4102
63 #define IDC_CELL                        4103
64 #define IDC_COPY                        4104
65 #define IDC_ALIAS                       4105
66 #define IDC_ZOOMIN                      4106
67 #define IDC_ZOOMOUT                     4107
68 #define IDC_COLRESIZE                   4108
69 #define IDC_ROWRESIZE                   4109
70 #define IDC_VERTICALTEXT                4110
71 #define IDC_NONE                        4112
73 IDC_GRAB                CURSOR  DISCARDABLE     "../../widget/src/build/res/grab.cur"
74 IDC_GRABBING            CURSOR  DISCARDABLE     "../../widget/src/build/res/grabbing.cur"
75 IDC_CELL                CURSOR  DISCARDABLE     "../../widget/src/build/res/cell.cur"
76 IDC_COPY                CURSOR  DISCARDABLE     "../../widget/src/build/res/copy.cur"
77 IDC_ALIAS               CURSOR  DISCARDABLE     "../../widget/src/build/res/aliasb.cur"
78 IDC_ZOOMIN              CURSOR  DISCARDABLE     "../../widget/src/build/res/zoom_in.cur"
79 IDC_ZOOMOUT             CURSOR  DISCARDABLE     "../../widget/src/build/res/zoom_out.cur"
80 IDC_COLRESIZE           CURSOR  DISCARDABLE     "../../widget/src/build/res/col_resize.cur"
81 IDC_ROWRESIZE           CURSOR  DISCARDABLE     "../../widget/src/build/res/row_resize.cur"
82 IDC_VERTICALTEXT        CURSOR  DISCARDABLE     "../../widget/src/build/res/vertical_text.cur"
83 IDC_NONE                CURSOR  DISCARDABLE     "../../widget/src/build/res/none.cur"
85 #endif