33 lines
364 B
C
33 lines
364 B
C
/*++
|
|
|
|
Copyright (c) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
osdep.h
|
|
|
|
Abstract:
|
|
|
|
defines for OS specific routines
|
|
|
|
Author:
|
|
|
|
Charlie Wickham (charlwi) 17-Sep-1996
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _OSDEP_
|
|
#define _OSDEP_
|
|
|
|
//
|
|
// shortest timer period in 100 ns units
|
|
//
|
|
|
|
#define TIMER_GRANULARITY 10000
|
|
|
|
#endif /* _OSDEP_ */
|
|
|
|
/* end osdep.h */
|