mirror of https://github.com/lianthony/NT4.0
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.
35 lines
625 B
35 lines
625 B
|
|
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ftpname.h
|
|
|
|
Abstract:
|
|
|
|
Private header file which defines the FTP Daemon name.
|
|
|
|
Author:
|
|
|
|
Dan Hinsley (DanHi) 23-Mar-1993
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#define FTP_INTERFACE_NAME_A "ftp"
|
|
#define FTP_INTERFACE_NAME_W L"ftp"
|
|
|
|
#define FTP_NAMED_PIPE_A "\\PIPE\\ftp"
|
|
#define FTP_NAMED_PIPE_W L"\\PIPE\\ftp"
|
|
|
|
#ifdef UNICODE
|
|
#define FTP_INTERFACE_NAME FTP_INTERFACE_NAME_W
|
|
#define FTP_NAMED_PIPE FTP_NAMED_PIPE_W
|
|
#else // !UNICODE
|
|
#define FTP_INTERFACE_NAME FTP_INTERFACE_NAME_A
|
|
#define FTP_NAMED_PIPE FTP_NAMED_PIPE_A
|
|
#endif // UNICODE
|
|
|