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.

76 lines
3.0 KiB

  1. /*++
  2. Copyright (C) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. strings.cpp
  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 "strings.h"
  11. // OLE and Registry strings
  12. LPCWSTR cszOleRegistryComment = L"WBEM NT5 Base Perf Provider";
  13. LPCWSTR cszClsidFormatString = L"Software\\Classes\\CLSID\\\\%s";
  14. LPCWSTR cszThreadingModel = L"ThreadingModel";
  15. LPCWSTR cszInprocServer = L"InprocServer32";
  16. LPCWSTR cszClsidKey = L"Software\\Classes\\CLSID";
  17. LPCWSTR cszPerflibKey = L"\\Registry\\Machine\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Perflib";
  18. LPCWSTR cszDLLValue = L"Library";
  19. LPCWSTR cszObjListValue = L"Object List";
  20. LPCWSTR cszLinkageKey = L"\\Linkage";
  21. LPCWSTR cszExportValue = L"Export";
  22. LPCWSTR cszOpenTimeout = L"Open Timeout";
  23. LPCWSTR cszCollectTimeout = L"Collect Timeout";
  24. LPCWSTR cszExtCounterTestLevel = L"ExtCounterTestLevel";
  25. LPCWSTR cszOpenProcedureWaitTime = L"OpenProcedureWaitTime";
  26. LPCWSTR cszLibraryUnloadTime = L"Library Unload Time";
  27. LPCWSTR cszKeepResident = L"Keep Library Resident";
  28. LPCWSTR cszDisablePerformanceCounters = L"Disable Performance Counters";
  29. LPCWSTR cszProviderName = L"NT5_GenericPerfProvider_V1";
  30. LPCWSTR cszHklmServicesKey = L"SYSTEM\\CurrentControlSet\\Services";
  31. LPCWSTR cszPerformance = L"\\Performance";
  32. LPCWSTR cszGlobal = L"Global";
  33. LPCWSTR cszForeign = L"FOREIGN";
  34. LPCWSTR cszCostly = L"COSTLY";
  35. LPCWSTR cszCounter = L"COUNTER";
  36. LPCWSTR cszExplain = L"EXPLAIN";
  37. LPCWSTR cszHelp = L"HELP";
  38. LPCWSTR cszAddCounter = L"ADDCOUNTER";
  39. LPCWSTR cszAddHelp = L"ADDEXPLAIN";
  40. LPCWSTR cszOnly = L"ONLY";
  41. LPCWSTR cszBoth = L"Both";
  42. LPCSTR caszOpenValue = "Open";
  43. LPCSTR caszCloseValue = "Close";
  44. LPCSTR caszCollectValue = "Collect";
  45. LPCSTR caszQueryValue = "Query";
  46. // "well known" property names
  47. LPCWSTR cszPropertyCount = L"__PROPERTY_COUNT";
  48. LPCWSTR cszClassName = L"__CLASS";
  49. LPCWSTR cszName = L"Name";
  50. LPCWSTR cszTimestampPerfTime = L"Timestamp_PerfTime";
  51. LPCWSTR cszFrequencyPerfTime = L"Frequency_PerfTime";
  52. LPCWSTR cszTimestampSys100Ns = L"Timestamp_Sys100NS";
  53. LPCWSTR cszFrequencySys100Ns = L"Frequency_Sys100NS";
  54. LPCWSTR cszTimestampObject = L"Timestamp_Object";
  55. LPCWSTR cszFrequencyObject = L"Frequency_Object";
  56. // "well known" qualifier names
  57. LPCWSTR cszPerfIndex = L"PerfIndex";
  58. LPCWSTR cszSingleton = L"Singleton";
  59. LPCWSTR cszCountertype = L"countertype";
  60. LPCWSTR cszProvider = L"Provider";
  61. LPCWSTR cszRegistryKey = L"registrykey";
  62. // other random strings
  63. LPCWSTR cszSpace = L" ";
  64. LPCWSTR cszSlash = L"/";