00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef __NEWRES_H__
00024 #define __NEWRES_H__
00025
00026 #if !defined(UNDER_CE)
00027 #define UNDER_CE _WIN32_WCE
00028 #endif
00029
00030 #if defined(_WIN32_WCE)
00031 #if !defined(WCEOLE_ENABLE_DIALOGEX)
00032 #define DIALOGEX DIALOG DISCARDABLE
00033 #endif
00034 #include <commctrl.h>
00035 #define SHMENUBAR RCDATA
00036 #if defined(WIN32_PLATFORM_PSPC) && (_WIN32_WCE >= 300)
00037 #include <aygshell.h>
00038 #else
00039 #define I_IMAGENONE (-2)
00040 #define NOMENU 0xFFFF
00041 #define IDS_SHNEW 1
00042
00043 #define IDM_SHAREDNEW 10
00044 #define IDM_SHAREDNEWDEFAULT 11
00045 #endif
00046 #endif // _WIN32_WCE
00047
00048
00049 #ifdef RC_INVOKED
00050 #ifndef _INC_WINDOWS
00051 #define _INC_WINDOWS
00052 #include "winuser.h"
00053 #endif
00054 #endif
00055
00056 #ifdef IDC_STATIC
00057 #undef IDC_STATIC
00058 #endif
00059 #define IDC_STATIC (-1)
00060
00061 #endif //__NEWRES_H__