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.
32 lines
396 B
32 lines
396 B
/*++
|
|
|
|
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 */
|