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.
41 lines
767 B
41 lines
767 B
/*++ BUILD Version: 0001 // Increment this if a change has global effects
|
|
|
|
Copyright (c) 1991-1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
tdint.h
|
|
|
|
Abstract:
|
|
|
|
This file defines TDI types specific to the NT environment.
|
|
|
|
Author:
|
|
|
|
Mike Massa (mikemas) August 13, 1993
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _TDINT_
|
|
#define _TDINT_
|
|
|
|
#include <tdikrnl.h>
|
|
|
|
typedef PTDI_IND_CONNECT PConnectEvent;
|
|
typedef PTDI_IND_DISCONNECT PDisconnectEvent;
|
|
typedef PTDI_IND_ERROR PErrorEvent;
|
|
typedef PTDI_IND_RECEIVE PRcvEvent;
|
|
typedef PTDI_IND_RECEIVE_DATAGRAM PRcvDGEvent;
|
|
typedef PTDI_IND_RECEIVE_EXPEDITED PRcvExpEvent;
|
|
|
|
typedef IRP EventRcvBuffer;
|
|
typedef IRP ConnectEventInfo;
|
|
|
|
//
|
|
// BUGBUG: What about SEND_POSSIBLE????
|
|
//
|
|
|
|
#endif // ifndef _TDINT_
|
|
|