1 #ifndef __NEWRES_H__
2 #define __NEWRES_H__
3 
4 #if !defined(UNDER_CE)
5 	#define UNDER_CE _WIN32_WCE
6 #endif
7 
8 #if defined(_WIN32_WCE)
9 	#if !defined(WCEOLE_ENABLE_DIALOGEX)
10 		#define DIALOGEX DIALOG DISCARDABLE
11 	#endif
12 	#include <commctrl.h>
13 	#define  SHMENUBAR RCDATA
14 	#if (defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)) && (_WIN32_WCE >= 300)
15 		#include <aygshell.h>
16 	#else
17 		#define I_IMAGENONE		(-2)
18 		#define NOMENU			0xFFFF
19 		#define IDS_SHNEW		1
20 
21 		#define IDM_SHAREDNEW        10
22 		#define IDM_SHAREDNEWDEFAULT 11
23 	#endif
24 #endif // _WIN32_WCE
25 
26 
27 #ifdef RC_INVOKED
28 #ifndef _INC_WINDOWS
29 #define _INC_WINDOWS
30 	#include "winuser.h"           // extract from windows header
31 #endif
32 #endif
33 
34 #ifdef IDC_STATIC
35 #undef IDC_STATIC
36 #endif
37 #define IDC_STATIC      (-1)
38 
39 #endif //__NEWRES_H__
40 
41