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.

63 lines
2.6 KiB

  1. /*++
  2. * File name:
  3. * clntdata.h
  4. * Contents:
  5. * RDP client specific definitions
  6. *
  7. * Copyright (C) 1998-1999 Microsoft Corp.
  8. *
  9. --*/
  10. #ifndef _CLNTDATA_H
  11. #define _CLNTDATA_H
  12. #ifdef OS_WIN16
  13. #define _TEXTSMC(_x_) _x_
  14. #else // !OS_WIN16
  15. #define _TEXTSMC(_x_) L##_x_
  16. #endif // !OS_WIN16
  17. // Default vals of various string we are waiting for
  18. #define RUN_MENU _TEXTSMC("Shut Down...")
  19. #define START_LOGOFF _TEXTSMC("\\p\\p\\p\\72\\*72\\72\\*72\\72\\*72\\n")
  20. #define RUN_ACT _TEXTSMC("r")
  21. #define RUN_BOX _TEXTSMC("Type the name of a program")
  22. #define WINLOGON_USERNAME _TEXTSMC("Options <<")
  23. #define WINLOGON_ACT _TEXTSMC("\\&u\\&")
  24. #define PRIOR_WINLOGON _TEXTSMC("Options >>")
  25. #define PRIOR_WINLOGON_ACT _TEXTSMC("\\&o\\&")
  26. #define WINDOWS_NT_SECURITY _TEXTSMC("Windows NT Security")
  27. #define WINDOWS_NT_SECURITY_ACT _TEXTSMC("l")
  28. #define ARE_YOU_SURE _TEXTSMC("Are you sure")
  29. #define SURE_LOGOFF_ACT _TEXTSMC("\\n")
  30. #define LOGON_ERROR_MESSAGE _TEXTSMC("\\n")
  31. #define LOGON_DISABLED_MESSAGE _TEXTSMC("Terminal Server Sessions Disabled")
  32. // This string is in RegisterChat only. English version only
  33. // OBSELETE.
  34. #define LOGOFF_COMMAND _TEXTSMC("logoff")
  35. #define REG_BASE "SOFTWARE\\Microsoft\\Terminal Server Client"
  36. #define REG_DEFAULT "SOFTWARE\\Microsoft\\Terminal Server Client\\Default"
  37. #define ALLOW_BACKGROUND_INPUT "Allow Background Input"
  38. #define NAME_MAINCLASS "UIMainClass" // Clients main window class
  39. #define NAME_CONTAINERCLASS "UIContainerClass"
  40. #define NAME_INPUT "IHWindowClass" // IH (InputHalndle) class name
  41. #define NAME_OUTPUT "OPWindowClass" // OP (OutputRequestor)
  42. // class name
  43. #define CLIENT_CAPTION "Terminal Services Client"
  44. // clients caption
  45. #define CONNECT_CAPTION "Connect" // Connect button
  46. #define DISCONNECT_DIALOG_BOX "Terminal Services Client Disconnected"
  47. // Caption of the box when
  48. // the client is disconnected
  49. #define STATIC_CLASS "Static"
  50. #define BUTTON_CLASS "Button"
  51. #define YES_NO_SHUTDOWN "Disconnect Windows session"
  52. #define FATAL_ERROR_5 "Fatal Error (Error Code: 5)"
  53. // Caption of disconnect box
  54. #define CLIENT_EXE "mstsc.exe" // Client executable
  55. #endif // _CLNTDATA_H