|
|
|
|
| 3 |
# Win7: AppVendor, AppName, and AppVersion must match the application.ini values |
3 |
# Win7: AppVendor, AppName, and AppVersion must match the application.ini values |
| 4 |
# of Vendor, Name, and Version. These values are used in registering shortcuts |
4 |
# of Vendor, Name, and Version. These values are used in registering shortcuts |
| 5 |
# with the taskbar. ExplicitAppUserModelID registration when the app launches is |
5 |
# with the taskbar. ExplicitAppUserModelID registration when the app launches is |
| 6 |
# handled in widget/src/windows/WinTaskbar.cpp. |
6 |
# handled in widget/src/windows/WinTaskbar.cpp. |
| 7 |
|
7 |
|
| 8 |
!define AppVendor "Mozilla" |
8 |
!define AppVendor "Mozilla" |
| 9 |
!define AppName "Firefox" |
9 |
!define AppName "Firefox" |
| 10 |
!define AppVersion "@APP_VERSION@" |
10 |
!define AppVersion "@APP_VERSION@" |
|
|
11 |
#ifdef _WIN64 |
| 12 |
!define AppUserModelID "${AppVendor}.${AppName}.${AppVersion}.Win64" |
| 13 |
#elif _X86_ |
| 14 |
!define AppUserModelID "${AppVendor}.${AppName}.${AppVersion}.Win32" |
| 15 |
#else |
| 11 |
!define AppUserModelID "${AppVendor}.${AppName}.${AppVersion}" |
16 |
!define AppUserModelID "${AppVendor}.${AppName}.${AppVersion}" |
|
|
17 |
#endif |
| 12 |
!define GREVersion @MOZILLA_VERSION@ |
18 |
!define GREVersion @MOZILLA_VERSION@ |
| 13 |
!define AB_CD "@AB_CD@" |
19 |
!define AB_CD "@AB_CD@" |
| 14 |
|
20 |
|
| 15 |
!define FileMainEXE "@MOZ_APP_NAME@.exe" |
21 |
!define FileMainEXE "@MOZ_APP_NAME@.exe" |
| 16 |
!define WindowClass "FirefoxMessageWindow" |
22 |
!define WindowClass "FirefoxMessageWindow" |
| 17 |
!define DDEApplication "Firefox" |
23 |
!define DDEApplication "Firefox" |
| 18 |
!define AppRegName "Firefox" |
24 |
!define AppRegName "Firefox" |
| 19 |
|
25 |
|