From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- private/ntos/ndis/lt200/lttimer.h | 46 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 private/ntos/ndis/lt200/lttimer.h (limited to 'private/ntos/ndis/lt200/lttimer.h') 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_ + -- cgit v1.2.3