Leaked source code of windows server 2003
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.

47 lines
1.8 KiB

  1. // File: strings.cpp
  2. #include "precomp.h"
  3. // Non-localizable strings
  4. const TCHAR g_szEmpty[] = _TEXT("");
  5. const TCHAR g_cszBackgroundSwitch[] = _TEXT("Background");
  6. // Window Class Names
  7. const TCHAR g_szButton[] = _TEXT("button");
  8. const TCHAR g_szEdit[] = _TEXT("edit");
  9. const TCHAR g_szNMWindowClass[] = _TEXT("NMWindowClass");
  10. const TCHAR g_szConfRoomClass[] = _TEXT("MPWClass");
  11. const TCHAR g_szFloatWndClass[] = _TEXT("MPFloatWClass");
  12. const TCHAR g_szPopupMsgWndClass[] = _TEXT("MPPopupMsgWClass");
  13. const TCHAR g_szRebarFrameClass[] = _TEXT("ConfRebarFrameClass");
  14. const TCHAR g_szAudioBandClass[] = _TEXT("ConfAudioBandClass");
  15. const TCHAR g_szAudioLevelBandClass[] = _TEXT("ConfAudioLevelBandClass");
  16. const TCHAR g_cszSysListView[] = TEXT("SysListView32");
  17. //
  18. const TCHAR g_cszHelpFileName[] = TEXT("conf.hlp");
  19. // Frequently used registry keys (from confreg.h)
  20. TCHAR * g_szConferencingKey = _TEXT("SOFTWARE\\Microsoft\\Conferencing");
  21. TCHAR * g_szUiKey = _TEXT("SOFTWARE\\Microsoft\\Conferencing\\UI");
  22. TCHAR * g_szAudioKey = _TEXT("SOFTWARE\\Microsoft\\Conferencing\\Audio Control");
  23. TCHAR * g_szIlsKey = _TEXT("Software\\Microsoft\\User Location Service\\Client");
  24. // moved over from api/nminf
  25. // should be merged with above strings
  26. const TCHAR * g_cszEmpty = TEXT("");
  27. const TCHAR * g_cszCallTo = TEXT("callto:");
  28. const TCHAR * g_cszConfExeName = TEXT("conf.exe");
  29. const TCHAR * g_cszListView = TEXT("SysListView32");
  30. const TCHAR * g_cszButton = TEXT("Button");
  31. const TCHAR * g_cszEdit = TEXT("Edit");
  32. const TCHAR * g_cszComboBox = TEXT("ComboBox");
  33. const TCHAR * g_cszComboBoxEx = TEXT("ComboBoxEx32");
  34. const TCHAR * g_cszStatic = TEXT("STATIC");