Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.7 KiB

  1. /* CalcHelp.h - help codes for Chicago Calculator */
  2. #define CALC_STD_SIGN 80 // beginning of matchup
  3. #define CALC_C 81
  4. #define CALC_CE 82
  5. #define CALC_BACK 83
  6. #define CALC_SCI_STA 84
  7. #define CALC_STD_DECIMAL 85
  8. #define CALC_SCI_AND 86
  9. #define CALC_SCI_OR 87
  10. #define CALC_SCI_XOR 88
  11. #define CALC_SCI_LSH 89
  12. #define CALC_STD_SLASH 90
  13. #define CALC_STD_ASTERISK 91
  14. #define CALC_STD_PLUS 92
  15. #define CALC_STD_MINUS 93
  16. #define CALC_SCI_MOD 94
  17. #define CALC_SCI_XCARETY 95
  18. #define CALC_SCI_INT 96
  19. #define CALC_SCI_NOT 97
  20. #define CALC_SCI_SIN 98
  21. #define CALC_SCI_COS 99
  22. #define CALC_SCI_TAN 100
  23. #define CALC_SCI_LN 101
  24. #define CALC_SCI_LOG 102
  25. #define CALC_STD_SQRT 103
  26. #define CALC_SCI_XCARET2 140
  27. #define CALC_SCI_XCARET3 104
  28. #define CALC_SCI_FACTORIAL 105
  29. #define CALC_1X 106
  30. #define CALC_SCI_DMS 107
  31. #define CALC_STD_PERCENT 108
  32. #define CALC_SCI_FE 109
  33. #define CALC_SCI_PI 110
  34. #define CALC_STD_EQUAL 111
  35. #define CALC_MC 112
  36. #define CALC_MR 113
  37. #define CALC_MS 114
  38. #define CALC_MPLUS 115 /* was CALC_M+ but this breaks the C compiler */
  39. #define CALC_SCI_EXP 116
  40. #define CALC_SCI_AVE 117
  41. #define CALC_SCI_SUM 118
  42. #define CALC_SCI_S 119
  43. #define CALC_SCI_DAT 120
  44. #define CALC_SCI_OPENPAREN 40
  45. #define CALC_SCI_CLOSEPAREN 41
  46. #define CALC_STD_NUMBERS 48 /* are Numbers 48-57*/
  47. #define CALC_SCI_ABCDEF 65 /* Are Numbers 65 - 70 */
  48. // 0 - F are in here, bin should start again at 140
  49. #define CALC_SCI_BIN 121
  50. #define CALC_SCI_OCT 122
  51. #define CALC_SCI_DEC 123
  52. #define CALC_SCI_HEX 124
  53. #define CALC_SCI_INV 125
  54. #define CALC_SCI_HYP 126
  55. #define CALC_SCI_DEG 127
  56. #define CALC_SCI_RAD 128
  57. #define CALC_SCI_GRAD 129
  58. // if Dword, word, and byte followed Deg,rad,grad we could convert by adding three
  59. #define CALC_SCI_OWORD 19 // reserved 128 bit
  60. #define CALC_SCI_QWORD 20
  61. #define CALC_SCI_DWORD 21
  62. #define CALC_SCI_WORD 22
  63. #define CALC_SCI_BYTE 23
  64. #define CALC_SCI_MEM 130 // end of matchup
  65. #define CALC_SCI_PARENS 131
  66. #define CALC_STD_VALUE 9 // this is the display's help text
  67. // these are converted seperately:
  68. #define CALC_SCI_STATISTICS_VALUE 401
  69. #define CALC_SCI_RET 402
  70. #define CALC_SCI_LOAD 403
  71. #define CALC_SCI_CD 404
  72. #define CALC_SCI_CAD 405
  73. #define CALC_SCI_NUMBER 406