<html>
<head>
<style><!--
  body {background-color:#ffffff;}
  .file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
  .pathname {font-family:monospace; float:right;}
  .fileheader {margin-bottom:.5em;}
  .diff {margin:0;}
  .tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
  .tasklist ul {margin-top:0;margin-bottom:0;}
  tr.alt {background-color:#eeeeee}
  #added {background-color:#ddffdd;}
  #addedchars {background-color:#99ff99;font-weight:bolder;}
  tr.alt #added {background-color:#ccf7cc;}
  #removed {background-color:#ffdddd;}
  #removedchars {background-color:#ff9999;font-weight:bolder;}
  tr.alt #removed {background-color:#f7cccc;}
  #info {color:#888888;}
  #context {background-color:#eeeeee;}
  td {padding-left:.3em;padding-right:.3em;}
  tr.head {border-bottom-width:1px;border-bottom-style:solid;}
  tr.head td {padding:0;padding-top:.2em;}
  .task {background-color:#ffff00;}
  .comment {padding:4px;border:1px dashed #000000;background-color:#ffffdd}
  .error {color:red;}
  hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="4">Commit in <b><tt>reactos/drivers/net/afd/include</tt></b> on arty_afd_20040709</td></tr>
<tr><td><tt><a href="#file1"><span id="added">debug.h</span></a></tt></td><td align="right" id="added">+98</td><td></td><td nowrap="nowrap" align="right">added <a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net/afd/include/debug.h?rev=1.6.18.1&amp;content-type=text/x-cvsweb-markup">1.6.18.1</a></td></tr>
<tr class="alt"><td><tt><a href="#file2"><span id="added">tdi_proto.h</span></a></tt></td><td align="right" id="added">+17</td><td></td><td nowrap="nowrap" align="right">added <a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net/afd/include/tdi_proto.h?rev=1.1.2.1&amp;content-type=text/x-cvsweb-markup">1.1.2.1</a></td></tr>
<tr><td></td><td align="right" id="added">+115</td><td></td><td></td></tr>
</table>
<small id="info">2 added files</small><br />
<pre class="comment">
Include files.
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname" id="added"><a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos?only_with_tag=arty_afd_20040709">reactos</a>/<a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers?only_with_tag=arty_afd_20040709">drivers</a>/<a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net?only_with_tag=arty_afd_20040709">net</a>/<a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net/afd?only_with_tag=arty_afd_20040709">afd</a>/<a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net/afd/include?only_with_tag=arty_afd_20040709">include</a><br /></span>
<div class="fileheader" id="added"><big><b>debug.h</b></big> <small id="info">added at <a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net/afd/include/debug.h?rev=1.6.18.1&amp;content-type=text/x-cvsweb-markup">1.6.18.1</a></small></div>
<pre class="diff"><small id="info">diff -N debug.h
--- /dev/null        1 Jan 1970 00:00:00 -0000
+++ debug.h        9 Jul 2004 04:45:46 -0000        1.6.18.1
@@ -0,0 +1,98 @@
</small></pre><pre class="diff" id="added">+/*
+ * COPYRIGHT:   See COPYING in the top level directory
+ * PROJECT:     ReactOS Ancillary Function Driver
+ * FILE:        include/debug.h
+ * PURPOSE:     Debugging support macros
+ * DEFINES:     DBG     - Enable debug output
+ *              NASSERT - Disable assertions
+ */
+#ifndef __DEBUG_H
+#define __DEBUG_H
+
+#define NORMAL_MASK    0x000000FF
+#define SPECIAL_MASK   0xFFFFFF00
+#define MIN_TRACE      0x00000001
+#define MID_TRACE      0x00000002
+#define MAX_TRACE      0x00000003
+
+#define DEBUG_CHECK    0x00000100
+#define DEBUG_IRP      0x00000200
+#define DEBUG_ULTRA    0xFFFFFFFF
+
+#ifdef DBG
+
+extern DWORD DebugTraceLevel;
+
+#ifdef _MSC_VER
+
+#define AFD_DbgPrint(_t_, _x_) \
+    if (((DebugTraceLevel &amp; NORMAL_MASK) &gt;= _t_) || \
+        ((DebugTraceLevel &amp; _t_) &gt; NORMAL_MASK)) { \
+        DbgPrint("(%s:%d) ", __FILE__, __LINE__); \
+        DbgPrint _x_ ; \
+    }
+
+#else /* _MSC_VER */
+
+#define AFD_DbgPrint(_t_, _x_) \
+    if (((DebugTraceLevel &amp; NORMAL_MASK) &gt;= _t_) || \
+        ((DebugTraceLevel &amp; _t_) &gt; NORMAL_MASK)) { \
+        DbgPrint("(%s:%d)(%s) ", __FILE__, __LINE__, __FUNCTION__); \
+        DbgPrint _x_ ; \
+    }
+
+#endif /* _MSC_VER */
+
+#ifdef ASSERT
+#undef ASSERT
+#endif
+
+#ifdef NASSERT
+#define ASSERT(x)
+#else /* NASSERT */
+#define ASSERT(x) if (!(x)) { AFD_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
+#endif /* NASSERT */
+
+#define ASSERT_KM(x) ASSERT((x) &gt;= 0xC0000000)
+#define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() &lt;= (x))
+
+#else /* DBG */
+
+#define AFD_DbgPrint(_t_, _x_)
+
+#define ASSERT_IRQL(x)
+#define ASSERTKM(x)
+#define ASSERT(x)
+
+#endif /* DBG */
+
+
+#undef assert
+#define assert(x) ASSERT(x)
+#define assert_km(x) ASSERT_KM(x)
+#define assert_irql(x) ASSERT_IRQL(x)
+
+
+#ifdef _MSC_VER
+
+#define UNIMPLEMENTED \
+    AFD_DbgPrint(MIN_TRACE, ("The function at %s:%d is unimplemented, \
+        but come back another day.\n", __FILE__, __LINE__));
+
+#else /* _MSC_VER */
+
+#define UNIMPLEMENTED \
+    AFD_DbgPrint(MIN_TRACE, ("%s at %s:%d is unimplemented, " \
+        "but come back another day.\n", __FUNCTION__, __FILE__, __LINE__));
+
+#endif /* _MSC_VER */
+
+
+#define CHECKPOINT \
+    AFD_DbgPrint(DEBUG_CHECK, ("\n"));
+
+#define CP CHECKPOINT
+
+#endif /* __DEBUG_H */
+
+/* EOF */
</pre></div>
<hr /><a name="file2" /><div class="file">
<span class="pathname" id="added"><a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos?only_with_tag=arty_afd_20040709">reactos</a>/<a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers?only_with_tag=arty_afd_20040709">drivers</a>/<a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net?only_with_tag=arty_afd_20040709">net</a>/<a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net/afd?only_with_tag=arty_afd_20040709">afd</a>/<a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net/afd/include?only_with_tag=arty_afd_20040709">include</a><br /></span>
<div class="fileheader" id="added"><big><b>tdi_proto.h</b></big> <small id="info">added at <a href="http://cvs.reactos.com/cgi-bin/cvsweb/reactos/drivers/net/afd/include/tdi_proto.h?rev=1.1.2.1&amp;content-type=text/x-cvsweb-markup">1.1.2.1</a></small></div>
<pre class="diff"><small id="info">diff -N tdi_proto.h
--- /dev/null        1 Jan 1970 00:00:00 -0000
+++ tdi_proto.h        9 Jul 2004 04:45:46 -0000        1.1.2.1
@@ -0,0 +1,17 @@
</small></pre><pre class="diff" id="added">+#ifndef _TDI_PROTO_H
+#define _TDI_PROTO_H
+
+NTSTATUS TdiConnect( PIRP *PendingIrp,
+                     PFILE_OBJECT ConnectionObject,
+                     PTRANSPORT_ADDRESS RemoteAddress,
+                     PIO_COMPLETION_ROUTINE CompletionRoutine,
+                     PVOID CompletionContext );
+
+NTSTATUS TdiOpenConnectionEndpointFile(PUNICODE_STRING DeviceName,
+                                       PHANDLE ConnectionHandle,
+                                       PFILE_OBJECT *ConnectionObject);
+
+NTSTATUS TdiCloseDevice(HANDLE Handle,
+                        PFILE_OBJECT FileObject);
+
+#endif/*_TDI_PROTO_H*/
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -&gt; email">CVSspam</a> 0.2.8</small></center>
</body></html>