Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
768 B

/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
lttimer.h
Abstract:
This module contains the polling timer definitions
Author:
Stephen Hou ([email protected])
Nikhil Kamkolkar ([email protected])
Revision History:
19 Jun 1992 Initial Version ([email protected])
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_