summaryrefslogtreecommitdiffstats
path: root/private/ntos/tdi/tcpip/h/tdint.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/ntos/tdi/tcpip/h/tdint.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/private/ntos/tdi/tcpip/h/tdint.h b/private/ntos/tdi/tcpip/h/tdint.h
new file mode 100644
index 000000000..852f29c2a
--- /dev/null
+++ b/private/ntos/tdi/tcpip/h/tdint.h
@@ -0,0 +1,41 @@
+/*++ 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_
+