- Timestamp:
- 04/02/09 21:08:35 (3 years ago)
- Files:
-
- 1 modified
-
Whitix/trunk/include/devices/device.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/trunk/include/devices/device.h
r1625 r1999 26 26 #define KEDEVICE_H 27 27 28 #include "bus.h" 29 #include "driver.h" 30 28 31 #include <keobject.h> 29 32 … … 42 45 DevId devId; 43 46 DWORD type; /* Move to a KeDeviceClass structure soon. */ 47 struct KeDriver* driver; 48 49 /* Every device has a bus entry somewhere. */ 50 struct KeBusEntry entry; 44 51 45 52 union … … 99 106 } 100 107 108 void KeDeviceLock(struct KeDevice* device); 109 void KeDeviceUnlock(struct KeDevice* device); 110 101 111 #endif
