newres.h
上传用户:fjqzjn
上传日期:2008-01-21
资源大小:2764k
文件大小:2k
源码类别:

Windows CE

开发平台:

Visual C++

  1. /******************************************************************************
  2. ** Copyright (C) 2004. Intel Corporation. All Rights Reserved. 
  3. **
  4. ** The source code contained or described herein and all documents related to the
  5. ** source code ("Material") are owned by Intel Corporation or its suppliers or 
  6. ** licensors. Title to the Material remains with Intel Corporation or its suppliers
  7. ** and licensors. The Material contains trade secrets and proprietary and 
  8. ** confidential information of Intel or its suppliers and licensors. The Material 
  9. ** is protected by worldwide copyright and trade secret laws and treaty provisions.
  10. ** No part of the Material may be used, copied, reproduced, modified, published, 
  11. ** uploaded, posted, transmitted, distributed, or disclosed in any way without 
  12. ** Intel抯 prior express written permission.
  13. ** 
  14. ** No license under any patent, copyright, trade secret or other intellectual 
  15. ** property right is granted to or conferred upon you by disclosure or delivery 
  16. ** of the Materials, either expressly, by implication, inducement, estoppel or 
  17. ** otherwise. Any license under such intellectual property rights must be express 
  18. ** and approved by Intel in writing.
  19. ******************************************************************************/
  20. #ifndef __NEWRES_H__
  21. #define __NEWRES_H__
  22. #define  SHMENUBAR RCDATA
  23. #if !(defined(_WIN32_WCE_PSPC) && (_WIN32_WCE >= 300))
  24. #undef HDS_HORZ  
  25. #undef HDS_BUTTONS 
  26. #undef HDS_HIDDEN 
  27. #include <commctrl.h>
  28. // for MenuBar
  29. #define I_IMAGENONE (-2)
  30. #define NOMENU 0xFFFF
  31. #define IDS_SHNEW 1
  32. #define IDM_SHAREDNEW        10
  33. #define IDM_SHAREDNEWDEFAULT 11
  34. // for Tab Control
  35. #define TCS_SCROLLOPPOSITE      0x0001   // assumes multiline tab
  36. #define TCS_BOTTOM              0x0002
  37. #define TCS_RIGHT               0x0002
  38. #define TCS_VERTICAL            0x0080
  39. #define TCS_MULTISELECT         0x0004  // allow multi-select in button mode
  40. #define TCS_FLATBUTTONS         0x0008
  41. #endif //_WIN32_WCE_PSPC
  42. #endif //__NEWRES_H__