summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/lt200/lttimer.h
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/ntos/ndis/lt200/lttimer.h
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/ntos/ndis/lt200/lttimer.h')
-rw-r--r--private/ntos/ndis/lt200/lttimer.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/private/ntos/ndis/lt200/lttimer.h b/private/ntos/ndis/lt200/lttimer.h
new file mode 100644
index 000000000..ef6f86248
--- /dev/null
+++ b/private/ntos/ndis/lt200/lttimer.h
@@ -0,0 +1,46 @@
+/*++
+
+Copyright (c) 1992 Microsoft Corporation
+
+Module Name:
+
+ lttimer.h
+
+Abstract:
+
+ This module contains the polling timer definitions
+
+Author:
+
+ Stephen Hou (stephh@microsoft.com)
+ Nikhil Kamkolkar (nikhilk@microsoft.com)
+
+Revision History:
+ 19 Jun 1992 Initial Version (dch@pacvax.pacersoft.com)
+
+Notes: Tab stop: 4
+--*/
+
+#ifndef _LTTIMER_H_
+#define _LTTIMER_H_
+
+// Poll timer value in milliseconds.
+#define LT_POLLING_TIME (UINT)20
+
+VOID
+LtTimerPoll(
+ IN PVOID SystemSpecific1,
+ IN PVOID Context,
+ IN PVOID SystemSpecific2,
+ IN PVOID SystemSpecific3);
+
+#ifdef LTTIMER_H_LOCALS
+
+// Check to see if packet is broadcast.
+#define IS_PACKET_BROADCAST(p) (((UCHAR)p[0] == LT_BROADCAST_NODE_ID))
+
+#endif // LTTIMER_H_LOCALS
+
+
+#endif // _LTTIMER_H_
+