summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/lt200/lttimer.h
blob: ef6f86248eaee48ceeb531421949f6c9292388bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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_