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.

33 lines
749 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. strings.h
  5. Abstract:
  6. Global resource strings which should not be localized
  7. --*/
  8. #include <windows.h>
  9. class CGlobalString {
  10. public:
  11. CGlobalString() {};
  12. ~CGlobalString() {};
  13. // static const WCHAR m_chBackslash;
  14. static LPCWSTR m_cszDefaultsInstalled;
  15. static LPCWSTR m_cszConceptsHTMLHelpFileName;
  16. static LPCWSTR m_cszSnapinHTMLHelpFileName;
  17. static LPCWSTR m_cszHTMLHelpTopic;
  18. static LPCWSTR m_cszContextHelpFileName;
  19. static LPCWSTR m_cszDefaultCtrLogCpuPath;
  20. static LPCWSTR m_cszDefaultCtrLogMemoryPath;
  21. static LPCWSTR m_cszDefaultCtrLogDiskPath;
  22. };