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.

97 lines
2.3 KiB

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