1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/xre/nsNativeAppSupportWin.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +/* This file has *public* stuff needed for the Win32 implementation of 1.10 + * the nsINativeAppSupport interface. It has to be broken out into a 1.11 + * separate file in order to ensure that the generated .h file can be 1.12 + * used in a Win32 .rc file. See /mozilla/xpfe/bootstrap/splash.rc. 1.13 + * 1.14 + * This file, and the generated .h, are only needed on Win32 platforms. 1.15 + */ 1.16 + 1.17 +// Constants identifying Win32 "native" resources. 1.18 + 1.19 +#ifdef MOZ_PHOENIX 1.20 + 1.21 +// Splash screen dialog ID. 1.22 +#define IDD_SPLASH 100 1.23 + 1.24 +// Splash screen bitmap ID. 1.25 +#define IDB_SPLASH 101 1.26 + 1.27 +// DDE application name 1.28 +#define ID_DDE_APPLICATION_NAME 102 1.29 + 1.30 +#define IDI_APPICON 1 1.31 +#define IDI_DOCUMENT 2 1.32 +#define IDI_NEWWINDOW 3 1.33 +#define IDI_NEWTAB 4 1.34 +#define IDI_PBMODE 5 1.35 +#ifndef IDI_APPLICATION 1.36 +#define IDI_APPLICATION 32512 1.37 +#endif 1.38 + 1.39 +#endif 1.40 + 1.41 +// String that goes in the WinXP Start Menu. 1.42 +#define IDS_STARTMENU_APPNAME 103