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.

66 lines
2.9 KiB

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