• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/wce_tpcb/
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) && (_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#ifdef RC_INVOKED
27#ifndef _INC_WINDOWS
28#define	_INC_WINDOWS
29	#include "winuser.h"           // extract from windows header
30#endif
31#endif
32
33#ifdef IDC_STATIC
34#undef IDC_STATIC
35#endif
36#define	IDC_STATIC      (-1)
37
38#endif //__NEWRES_H__
39