1 /*-
2  * Copyright (c) 2007, 2020 Oracle and/or its affiliates.  All rights reserved.
3  *
4  * See the file EXAMPLES-LICENSE for license information.
5  *
6  * $Id$
7  */
8 
9 #ifndef __NEWRES_H__
10 #define	__NEWRES_H__
11 
12 #if !defined(UNDER_CE)
13 	#define UNDER_CE _WIN32_WCE
14 #endif
15 
16 #if defined(_WIN32_WCE)
17 	#if !defined(WCEOLE_ENABLE_DIALOGEX)
18 		#define DIALOGEX DIALOG DISCARDABLE
19 	#endif
20 	#include <commctrl.h>
21 	#define  SHMENUBAR RCDATA
22 	#if defined(WIN32_PLATFORM_PSPC) && (_WIN32_WCE >= 300)
23 		#include <aygshell.h>
24 	#else
25 		#define I_IMAGENONE		(-2)
26 		#define NOMENU			0xFFFF
27 		#define IDS_SHNEW		1
28 
29 		#define IDM_SHAREDNEW        10
30 		#define IDM_SHAREDNEWDEFAULT 11
31 	#endif
32 #endif // _WIN32_WCE
33 
34 #ifdef RC_INVOKED
35 #ifndef _INC_WINDOWS
36 #define	_INC_WINDOWS
37 	#include "winuser.h"           // extract from windows header
38 #endif
39 #endif
40 
41 #ifdef IDC_STATIC
42 #undef IDC_STATIC
43 #endif
44 #define	IDC_STATIC      (-1)
45 
46 #endif //__NEWRES_H__
47