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.
|
|
/*++
Copyright (c) 1994 Microsoft Corporation
Module Name:
sockets.h
Abstract:
Contains manifests, macros, types and prototypes for sockets.c
Author:
Richard L Firth (rfirth) 11-Oct-1994
Revision History:
11-Oct-1994 rfirth Created
--*/
#if defined(__cplusplus)
extern "C" { #endif
//
// prototypes
//
DWORD GopherConnect( IN LPVIEW_INFO ViewInfo );
DWORD GopherDisconnect( IN LPVIEW_INFO ViewInfo, IN BOOL AbortConnection );
DWORD GopherSendRequest( IN LPVIEW_INFO ViewInfo );
DWORD GopherReceiveResponse( IN LPVIEW_INFO ViewInfo, OUT LPDWORD BytesReceived );
#if defined(__cplusplus)
} #endif
|