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.

60 lines
1.6 KiB

  1. // File: strings.h
  2. #ifndef _STRINGS_H_
  3. #define _STRINGS_H_
  4. // Non-localizable strings
  5. extern const TCHAR g_szEmpty[];
  6. extern const TCHAR g_cszBackgroundSwitch[];
  7. // Window Class Names
  8. extern const TCHAR g_szButton[];
  9. extern const TCHAR g_szEdit[];
  10. extern const TCHAR g_szNMWindowClass[];
  11. extern const TCHAR g_szConfRoomClass[];
  12. extern const TCHAR g_szFloatWndClass[];
  13. extern const TCHAR g_szPopupMsgWndClass[];
  14. extern const TCHAR g_szRebarFrameClass[];
  15. extern const TCHAR g_szAudioBandClass[];
  16. extern const TCHAR g_szAudioLevelBandClass[];
  17. extern const TCHAR g_szViewWndClass[];
  18. extern const TCHAR g_cszSysListView[]; // SysListView32
  19. extern const TCHAR g_cszHelpFileName[]; // conf.hlp
  20. extern const TCHAR g_cszConfLinkExt[]; // .cnf
  21. // Common strings from confreg.h (compiler can't pool strings across .obj files)
  22. #undef CONFERENCING_KEY
  23. #define CONFERENCING_KEY g_szConferencingKey
  24. extern TCHAR * g_szConferencingKey;
  25. #undef UI_KEY
  26. #define UI_KEY g_szUiKey
  27. extern TCHAR * g_szUiKey;
  28. #undef AUDIO_KEY
  29. #define AUDIO_KEY g_szAudioKey
  30. extern TCHAR * g_szAudioKey;
  31. #undef ISAPI_CLIENT_KEY
  32. #define ISAPI_CLIENT_KEY g_szIlsKey
  33. extern TCHAR * g_szIlsKey;
  34. // Non-localizable strings
  35. extern const TCHAR * g_cszEmpty;
  36. extern const TCHAR * g_cszCallTo; // callto:
  37. extern const TCHAR * g_cszConfExeName; // conf.exe
  38. extern const TCHAR * g_cszListView;
  39. extern const TCHAR * g_cszButton;
  40. extern const TCHAR * g_cszEdit;
  41. extern const TCHAR * g_cszComboBox;
  42. extern const TCHAR * g_cszComboBoxEx;
  43. extern const TCHAR * g_cszStatic;
  44. #endif /* _STRINGS_H_ */