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.
93 lines
1.6 KiB
93 lines
1.6 KiB
/*++
|
|
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
aspint.h
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
Nikhil Kamkolkar (NikhilK) 28-Jun-1992
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
//
|
|
// Local prototypes
|
|
//
|
|
|
|
|
|
VOID
|
|
NTAspGetRequestComplete(
|
|
PORTABLE_ERROR Error,
|
|
ULONG UserData,
|
|
LONG SessionRefNum,
|
|
PVOID OpaqueBuffer,
|
|
INT OpaqueBufferSize,
|
|
SHORT RequestType,
|
|
LONG GetRequestRefNum);
|
|
|
|
VOID
|
|
NTAspGetAnyRequestComplete(
|
|
PORTABLE_ERROR Error,
|
|
ULONG UserData,
|
|
LONG SessionRefNum,
|
|
ULONG SessionContext,
|
|
PVOID OpaqueBuffer,
|
|
INT OpaqueBufferSize,
|
|
SHORT RequestType,
|
|
LONG GetRequestRefNum);
|
|
|
|
VOID
|
|
NTAspReplyComplete(
|
|
PORTABLE_ERROR Error,
|
|
ULONG UserData,
|
|
LONG SessionRefNum,
|
|
LONG GetRequestRefNum);
|
|
|
|
VOID
|
|
NTAspWriteContinueComplete(
|
|
PORTABLE_ERROR Error,
|
|
ULONG UserData,
|
|
LONG SessionRefNum,
|
|
LONG GetRequestRefNum,
|
|
PVOID OpaqueBuffer,
|
|
LONG BytesWritten);
|
|
|
|
VOID
|
|
NTAspCommandComplete(
|
|
PORTABLE_ERROR Error,
|
|
ULONG UserData,
|
|
LONG SessionRefNum,
|
|
PCHAR ResultCode,
|
|
PVOID OpaqueBuffer,
|
|
INT OpaqueBufferSize);
|
|
|
|
VOID
|
|
NTAspWriteComplete(
|
|
PORTABLE_ERROR Error,
|
|
ULONG UserData,
|
|
LONG SessionRefNum,
|
|
PCHAR ResultCode,
|
|
PVOID OpaqueBuffer,
|
|
LONG BytesWritten);
|
|
|
|
VOID
|
|
NTAspGetAttentionComplete(
|
|
PORTABLE_ERROR Error,
|
|
ULONG UserData,
|
|
LONG SessionRefNum,
|
|
USHORT AttentionCode);
|
|
|
|
VOID
|
|
NTAspGetStatusComplete(
|
|
PORTABLE_ERROR Error,
|
|
ULONG UserData,
|
|
PVOID OpaqueBuffer,
|
|
LONG BytesWritten);
|
|
|