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.

113 lines
3.4 KiB

  1. /*****************************************************************/
  2. /** Microsoft Windows NT **/
  3. /** Copyright(c) Microsoft Corp., 1993 **/
  4. /*****************************************************************/
  5. /*
  6. * ftpmgr.h
  7. * This manifests are used by the ftp service manager dialogs
  8. * in the control panel applet and the server manager extension dll
  9. *
  10. * History:
  11. * Yi-HsinS 3/18/93 Created
  12. *
  13. */
  14. #ifndef _FTPMGR_H_
  15. #define _FTPMGR_H_
  16. #include <uirsrc.h>
  17. #include <uimsg.h>
  18. /*
  19. * Menu Ids - used in server manager extension dll only
  20. */
  21. #define ID_FTPSMX_MENU 1000
  22. #define IDM_FTP_SERVICE 1
  23. /*
  24. * Resource Ids from 12000-12999 are reserved for ftpmgr.cpl and ftpsmx.dll
  25. */
  26. /*
  27. * Icons - used in the control panel applet only
  28. */
  29. #define IDI_FTPCPA_ICON 12001
  30. /*
  31. * Bitmaps
  32. */
  33. #define BMID_USER 12002
  34. #define BMID_ANONYMOUS 12003
  35. /*
  36. * Dialog Numbers
  37. */
  38. #define IDD_FTPSVCMGRDLG 12004
  39. #define IDD_FTPSECDLG 12005
  40. /*
  41. * FTP User Sessions Dialog
  42. */
  43. // The following four needs to be consecutive numbers.
  44. #define LB_USERS 105
  45. #define LBHEADER_USER_NAME 106
  46. #define LBHEADER_INTERNET_ADDRESS 107
  47. #define LBHEADER_TIME_CONNECTED 108
  48. #define BUTTON_DISCONNECT 109
  49. #define BUTTON_DISCONNECT_ALL 110
  50. #define BUTTON_SECURITY 111
  51. #define BUTTON_REFRESH 112
  52. /*
  53. * FTP Server Security Dialog
  54. */
  55. #define CB_PARTITION 106
  56. #define CHECKB_READ 107
  57. #define CHECKB_WRITE 108
  58. #define SLT_FILESYSTEMTYPE 110
  59. /*
  60. * String IDs
  61. */
  62. // The following are used in the control panel applet only
  63. #define IDS_FTPCPA_NAME_STRING (IDS_UI_FTPMGR_BASE+1)
  64. #define IDS_FTPCPA_INFO_STRING (IDS_UI_FTPMGR_BASE+2)
  65. #define IDS_CPL_HELPFILENAME (IDS_UI_FTPMGR_BASE+3)
  66. #define IDS_START_FTPSVC_NOW (IDS_UI_FTPMGR_BASE+4)
  67. #define IDS_FTPCPA_CAPTION (IDS_UI_FTPMGR_BASE+5)
  68. // The following are used in the server manager extension only
  69. #define IDS_FTPSMX_MENUNAME (IDS_UI_FTPMGR_BASE+100)
  70. #define IDS_FTPSMX_HELPFILENAME (IDS_UI_FTPMGR_BASE+101)
  71. #define IDS_NO_SERVERS_SELECTED (IDS_UI_FTPMGR_BASE+102)
  72. #define IDS_CANNOT_GET_SERVER_SELECTION (IDS_UI_FTPMGR_BASE+103)
  73. // The following are common to both the control panel applet and
  74. // server manager extension
  75. #define IDS_FTP_USER_SESSIONS_ON_COMPUTER (IDS_UI_FTPMGR_BASE+200)
  76. #define IDS_FTP_SERVER_SECURITY_ON_COMPUTER (IDS_UI_FTPMGR_BASE+201)
  77. #define IDS_CONFIRM_DISCONNECT_SELECTED_USERS (IDS_UI_FTPMGR_BASE+202)
  78. #define IDS_CONFIRM_DISCONNECT_ONE_USER (IDS_UI_FTPMGR_BASE+203)
  79. #define IDS_CONFIRM_DISCONNECT_ALL_USERS (IDS_UI_FTPMGR_BASE+204)
  80. #define IDS_DRIVE_REMOVABLE (IDS_UI_FTPMGR_BASE+205)
  81. #define IDS_DRIVE_CDROM (IDS_UI_FTPMGR_BASE+206)
  82. #define IDS_NO_PARTITION (IDS_UI_FTPMGR_BASE+207)
  83. #define IERR_FTP_SERVICE_UNAVAILABLE (IDS_UI_FTPMGR_BASE+208)
  84. #define IERR_FTP_SERVICE_UNAVAILABLE_ON_COMPUTER (IDS_UI_FTPMGR_BASE+209)
  85. /*
  86. * Help Context
  87. */
  88. #include <ftphelp.h>
  89. #endif