OLD | NEW |
| (Empty) |
1 // Windows Template Library - WTL version 8.0 | |
2 // Copyright (C) Microsoft Corporation. All rights reserved. | |
3 // | |
4 // This file is a part of the Windows Template Library. | |
5 // The use and distribution terms for this software are covered by the | |
6 // Microsoft Permissive License (Ms-PL) which can be found in the file | |
7 // Ms-PL.txt at the root of this distribution. | |
8 | |
9 #ifndef __ATLRESCE_H__ | |
10 #define __ATLRESCE_H__ | |
11 | |
12 #pragma once | |
13 | |
14 #ifndef _WIN32_WCE | |
15 #error atlresCE.h is only for Windows CE | |
16 #endif | |
17 | |
18 | |
19 #ifdef RC_INVOKED | |
20 #ifndef _INC_WINDOWS | |
21 | |
22 #define VS_VERSION_INFO 1 | |
23 | |
24 #ifdef APSTUDIO_INVOKED | |
25 #define APSTUDIO_HIDDEN_SYMBOLS // Ignore following symbols | |
26 #endif // APSTUDIO_INVOKED | |
27 | |
28 #ifndef WINVER | |
29 #define WINVER 0x0400 // default to Windows Version 4.0 | |
30 #endif // !WINVER | |
31 | |
32 #if !defined(WCEOLE_ENABLE_DIALOGEX) | |
33 #define DIALOGEX DIALOG DISCARDABLE | |
34 #endif | |
35 | |
36 #include <commctrl.h> | |
37 #define SHMENUBAR RCDATA | |
38 | |
39 #if defined(SHELLSDK_MODULES_AYGSHELL) | |
40 #include <aygshell.h> | |
41 #else | |
42 #define NOMENU 0xFFFF | |
43 #define IDS_SHNEW 1 | |
44 #define IDM_SHAREDNEW 10 | |
45 #define IDM_SHAREDNEWDEFAULT 11 | |
46 #endif | |
47 #ifndef I_IMAGENONE | |
48 #define I_IMAGENONE (-2) | |
49 #endif | |
50 | |
51 #include <windows.h> | |
52 | |
53 #endif // !_INC_WINDOWS | |
54 #endif // RC_INVOKED | |
55 | |
56 #include "atlres.h" | |
57 | |
58 #ifdef APSTUDIO_INVOKED | |
59 #undef APSTUDIO_HIDDEN_SYMBOLS | |
60 #endif // APSTUDIO_INVOKED | |
61 | |
62 // Visual Studio dialog editor bug fix | |
63 #ifndef DS_FIXEDSYS | |
64 #define DS_FIXEDSYS 0 | |
65 #endif | |
66 | |
67 #define IDC_INFOSTATIC 0xFFFE // == IDC_STATIC -1 | |
68 | |
69 /////////////////////////////////////////////////////////////////////////////// | |
70 // Smartphone and PPC 2005 Resource IDs | |
71 | |
72 // Command and associated string resource IDs | |
73 #define ID_MENU_OK 0xE790 | |
74 #define ID_MENU_CANCEL 0xE791 | |
75 #define ID_MENU 0xE792 | |
76 #define ID_ACTION 0xE793 | |
77 #define ID_VIEW_FULLSCREEN 0xE802 | |
78 | |
79 // MenuBar resource IDs | |
80 #define ATL_IDM_MENU_DONE 0xE701 | |
81 #define ATL_IDM_MENU_CANCEL 0xE702 | |
82 #define ATL_IDM_MENU_DONECANCEL 0xE703 | |
83 | |
84 // Default device MenuBar control ID and MenuBar resource ID | |
85 #define ATL_IDW_MENU_BAR 0xE802 | |
86 | |
87 // SmartPhone spinned controls ID offset for CSpinCtrl | |
88 #define ATL_IDW_SPIN_ID 9999 | |
89 | |
90 #endif // __ATLRESCE_H__ | |
OLD | NEW |