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.
37 lines
446 B
37 lines
446 B
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
tcputil.h
|
|
|
|
Abstract:
|
|
|
|
Contains prototypes etc. for tcputil.c
|
|
|
|
Author:
|
|
|
|
Heath Hunnicutt (t-hheath) 21-Jun-1994
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
DWORD
|
|
FtpOpenServer(
|
|
IN LPFTP_SESSION_INFO SessionInfo
|
|
);
|
|
|
|
BOOL
|
|
ResetSocket(
|
|
IN ICSocket * Socket
|
|
);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|