RESOURCE.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*** 
  2. *resource.h
  3. *
  4. *  This is a part of the Microsoft Source Code Samples.
  5. *
  6. *  Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
  7. *
  8. *  This source code is only intended as a supplement to Microsoft Development
  9. *  Tools and/or WinHelp documentation.  See these sources for detailed
  10. *  information regarding the Microsoft samples programs.
  11. *
  12. *Purpose:
  13. *
  14. *Implementation Notes:
  15. *
  16. *****************************************************************************/
  17. #ifdef _MAC
  18. #define kMinSize 500 /* minimum size (in K) */
  19. #define kPrefSize 500 /* preferred size (in K) */
  20. #define kMinHeap 21 * 1024
  21. #define kMinSpace 8 * 1024
  22. #define rMenuBar 128 /* menu bar */
  23. #define rAboutAlert 128 /* about alert */
  24. #define rUserAlert 129 /* error alert */
  25. #define rCalc 130
  26. #define mApple 128 /* Apple menu */
  27. #define iAbout 1
  28. #define mFile 129 /* File menu */
  29. #define iClose 4
  30. #define iQuit 12
  31. #define mEdit 130 /* Edit menu */
  32. #define iUndo 1
  33. #define iCut 3
  34. #define iCopy 4
  35. #define iPaste 5
  36. #define iClear 6
  37. #endif
  38. // Note: there is code that depends on all of the digits being contiguous
  39. // and in the following order.
  40. // Mac Note: On the mac these IDs correspond to the control indices
  41. // in the DITL array.
  42. #define IDC_ZERO     1
  43. #define IDC_ONE      2
  44. #define IDC_TWO      3
  45. #define IDC_THREE    4
  46. #define IDC_FOUR     5
  47. #define IDC_FIVE     6
  48. #define IDC_SIX      7
  49. #define IDC_SEVEN    8
  50. #define IDC_EIGHT    9
  51. #define IDC_NINE     10
  52. // Note: there is code that depends on the operators being contiguous
  53. // and in the following order.
  54. //
  55. #define IDC_PLUS     11
  56. #define IDC_MINUS    12
  57. #define IDC_MULT     13
  58. #define IDC_DIV      14
  59. #define IDC_CLEAR    15
  60. #define IDC_EQUALS   16
  61. #define IDC_DISPLAY  17