Windows NT 4.0 source code leak
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.

76 lines
2.5 KiB

5 years ago
  1. /******************************Module*Header*******************************\
  2. * Module Name: glstring.h
  3. *
  4. * String resource IDs.
  5. *
  6. * Created: 17-Feb-1994 15:54:45
  7. * Author: Gilman Wong [gilmanw]
  8. *
  9. * Copyright (c) 1994 Microsoft Corporation
  10. *
  11. \**************************************************************************/
  12. #ifndef _GLSTRING_H_
  13. #define _GLSTRING_H_
  14. #define STR_GLU_NO_ERROR 1
  15. #define STR_GLU_INVALID_ENUM 2
  16. #define STR_GLU_INVALID_VAL 3
  17. #define STR_GLU_INVALID_OP 4
  18. #define STR_GLU_STACK_OVER 5
  19. #define STR_GLU_STACK_UNDER 6
  20. #define STR_GLU_OUT_OF_MEM 7
  21. #define STR_TESS_BEGIN_POLY 40
  22. #define STR_TESS_BEGIN_CONTOUR 41
  23. #define STR_TESS_END_POLY 42
  24. #define STR_TESS_END_CONTOUR 43
  25. #define STR_TESS_COORD_TOO_LARGE 44
  26. #define STR_TESS_NEED_COMBINE_CALLBACK 45
  27. #define STR_NURB_00 100
  28. #define STR_NURB_01 101
  29. #define STR_NURB_02 102
  30. #define STR_NURB_03 103
  31. #define STR_NURB_04 104
  32. #define STR_NURB_05 105
  33. #define STR_NURB_06 106
  34. #define STR_NURB_07 107
  35. #define STR_NURB_08 108
  36. #define STR_NURB_09 109
  37. #define STR_NURB_10 110
  38. #define STR_NURB_11 111
  39. #define STR_NURB_12 112
  40. #define STR_NURB_13 113
  41. #define STR_NURB_14 114
  42. #define STR_NURB_15 115
  43. #define STR_NURB_16 116
  44. #define STR_NURB_17 117
  45. #define STR_NURB_18 118
  46. #define STR_NURB_19 119
  47. #define STR_NURB_20 120
  48. #define STR_NURB_21 121
  49. #define STR_NURB_22 122
  50. #define STR_NURB_23 123
  51. #define STR_NURB_24 124
  52. #define STR_NURB_25 125
  53. #define STR_NURB_26 126
  54. #define STR_NURB_27 127
  55. #define STR_NURB_28 128
  56. #define STR_NURB_29 129
  57. #define STR_NURB_30 130
  58. #define STR_NURB_31 131
  59. #define STR_NURB_32 132
  60. #define STR_NURB_33 133
  61. #define STR_NURB_34 134
  62. #define STR_NURB_35 135
  63. #define STR_NURB_36 136
  64. #define STR_NURB_37 137
  65. extern char *pszGetResourceStringA(HINSTANCE hMod, UINT uiID);
  66. extern WCHAR *pwszGetResourceStringW(HINSTANCE hMod, UINT uiID);
  67. extern VOID vInitGluStrings(HINSTANCE hMod, BOOL bAnsi);
  68. extern VOID vInitNurbStrings(HINSTANCE hMod, BOOL bAnsi);
  69. extern VOID vInitTessStrings(HINSTANCE hMod, BOOL bAnsi);
  70. #endif //_GLSTRING_H_