Initial revision
[reactos.git] / reactos / drivers / dd / event / sys / event.h
1 /*++
2
3 Copyright (c) 1996 Microsoft Corporation
4
5 Module Name:
6
7 Event.h
8
9 Abstract:
10
11
12 Author:
13
14 Jeff Midkiff (jeffmi) 23-Jul-96
15
16 Enviroment:
17
18
19 Revision History:
20
21 --*/
22
23 #ifndef __EVENT__
24 #define __EVENT__
25
26
27 #include "devioctl.h"
28
29 typedef struct _SET_EVENT
30 {
31 HANDLE hEvent;
32 LARGE_INTEGER DueTime; // requested DueTime in 100-nanosecond units
33
34 } SET_EVENT, *PSET_EVENT;
35
36 #define SIZEOF_SETEVENT sizeof(SET_EVENT)
37
38
39 #define IOCTL_SET_EVENT \
40 CTL_CODE( FILE_DEVICE_UNKNOWN, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS )
41
42
43 #endif // __EVENT__