Source code of Windows XP (NT5)
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.

87 lines
2.2 KiB

  1. // strings.h
  2. //
  3. // central definition file of common static strings
  4. // these strings SHOULD NOT be localized as they are internal
  5. // to the program and not intended for any display to the user
  6. //
  7. #include "windows.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. // single character constants
  12. #define wcSpace L' '
  13. #define wcSlash L'/'
  14. #define wcPoundSign L'#'
  15. #define wc_0 L'0'
  16. #define wc_a L'a'
  17. #define wc_A L'A'
  18. #define wc_E L'E'
  19. #define wc_F L'F'
  20. #define wc_P L'P'
  21. #define wc_R L'R'
  22. #define wc_z L'z'
  23. // OLE and Registry strings
  24. extern LPCWSTR cszOleRegistryComment;
  25. extern LPCWSTR cszClsidFormatString;
  26. extern LPCWSTR cszThreadingModel;
  27. extern LPCWSTR cszInprocServer;
  28. extern LPCWSTR cszClsidKey;
  29. extern LPCWSTR cszPerflibKey;
  30. extern LPCWSTR cszDLLValue;
  31. extern LPCWSTR cszObjListValue;
  32. extern LPCWSTR cszLinkageKey;
  33. extern LPCWSTR cszExportValue;
  34. extern LPCWSTR cszOpenTimeout;
  35. extern LPCWSTR cszCollectTimeout;
  36. extern LPCWSTR cszExtCounterTestLevel;
  37. extern LPCWSTR cszOpenProcedureWaitTime;
  38. extern LPCWSTR cszLibraryUnloadTime;
  39. extern LPCWSTR cszKeepResident;
  40. extern LPCWSTR cszDisablePerformanceCounters;
  41. extern LPCWSTR cszProviderName;
  42. extern LPCWSTR cszHklmServicesKey;
  43. extern LPCWSTR cszPerformance;
  44. extern LPCWSTR cszGlobal;
  45. extern LPCWSTR cszForeign;
  46. extern LPCWSTR cszCostly;
  47. extern LPCWSTR cszCounter;
  48. extern LPCWSTR cszExplain;
  49. extern LPCWSTR cszHelp;
  50. extern LPCWSTR cszAddCounter;
  51. extern LPCWSTR cszAddHelp;
  52. extern LPCWSTR cszOnly;
  53. extern LPCWSTR cszBoth;
  54. extern LPCSTR caszOpenValue;
  55. extern LPCSTR caszCloseValue;
  56. extern LPCSTR caszCollectValue;
  57. extern LPCSTR caszQueryValue;
  58. // "well known" property names
  59. extern LPCWSTR cszPropertyCount;
  60. extern LPCWSTR cszClassName;
  61. extern LPCWSTR cszName;
  62. extern LPCWSTR cszTimestampPerfTime;
  63. extern LPCWSTR cszFrequencyPerfTime;
  64. extern LPCWSTR cszTimestampSys100Ns;
  65. extern LPCWSTR cszFrequencySys100Ns;
  66. extern LPCWSTR cszTimestampObject;
  67. extern LPCWSTR cszFrequencyObject;
  68. // "well known" qualifier names
  69. extern LPCWSTR cszPerfIndex;
  70. extern LPCWSTR cszSingleton;
  71. extern LPCWSTR cszCountertype;
  72. extern LPCWSTR cszProvider;
  73. extern LPCWSTR cszRegistryKey;
  74. // other random strings
  75. extern LPCWSTR cszSpace;
  76. extern LPCWSTR cszSlash;
  77. #ifdef __cplusplus
  78. }
  79. #endif