• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef __NEWRES_H__
2 #define __NEWRES_H__
3 
4 #define  SHMENUBAR RCDATA
5 #if !(defined(_WIN32_WCE_PSPC) && (_WIN32_WCE >= 300))
6 	#undef HDS_HORZ
7 	#undef HDS_BUTTONS
8 	#undef HDS_HIDDEN
9 
10 	#include <commctrl.h>
11 	// for MenuBar
12 	#define I_IMAGENONE		(-2)
13 	#define NOMENU			0xFFFF
14 	#define IDS_SHNEW		1
15 	#define IDM_SHAREDNEW        10
16 	#define IDM_SHAREDNEWDEFAULT 11
17 
18 	// for Tab Control
19 	#define TCS_SCROLLOPPOSITE      0x0001   // assumes multiline tab
20 	#define TCS_BOTTOM              0x0002
21 	#define TCS_RIGHT               0x0002
22 	#define TCS_VERTICAL            0x0080
23 	#define TCS_MULTISELECT         0x0004  // allow multi-select in button mode
24 	#define TCS_FLATBUTTONS         0x0008
25 #endif //_WIN32_WCE_PSPC
26 
27 
28 #endif //__NEWRES_H__
29