windows-nt/Source/XPSP1/NT/net/homenet/alg/alg_icq/icqio.h

71 lines
1 KiB
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#ifndef __ICQ_IO_H
#define __ICQ_IO_H
#endif // __ICQ_IO_H
//
// IoCompletion Routines
//
//
// Reading incoming UDP packets from the ICQ Server.
//
VOID
ReadServerCompletionRoutine
(
ULONG ErrorCode,
ULONG BytesTransferred,
PNH_BUFFER Bufferp
);
//
// Write Completion Routine which frees Up the Buffer
//
VOID
IcqWriteCompletionRoutine
(
ULONG ErrorCode,
ULONG BytesTransferred,
PNH_BUFFER Bufferp
);
//
// Reading from the UDP packets from the Client
// (old ReadTestIcqCompletionRoutine)
//
VOID
IcqReadClientUdpCompletionRoutine
(
ULONG ErrorCode,
ULONG BytesTransferred,
PNH_BUFFER Bufferp
);
VOID
IcqPeerConnectionCompletionRoutine
(
ULONG ErrorCode,
ULONG BytesTransferred,
PNH_BUFFER Bufferp
);
VOID
IcqPeerReadCompletionRoutine
(
ULONG ErrorCode,
ULONG BytesTransferred,
PNH_BUFFER Bufferp
);
VOID
IcqPeerWriteCompletionRoutine
(
ULONG ErrorCode,
ULONG BytesTransferred,
PNH_BUFFER Bufferp
);