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.
22 lines
328 B
22 lines
328 B
/* iohelp.h
|
|
* Copyright (c) 2001 Microsoft Corporation
|
|
*/
|
|
|
|
EXTERN_C
|
|
PDEVICE_OBJECT
|
|
IoGetLowerDeviceObject(
|
|
IN PDEVICE_OBJECT DeviceObject
|
|
);
|
|
|
|
EXTERN_C
|
|
NTSTATUS
|
|
IoDeviceIsVerifier(
|
|
PDEVICE_OBJECT DeviceObject
|
|
);
|
|
|
|
EXTERN_C
|
|
NTSTATUS
|
|
IoDeviceIsAcpi(
|
|
PDEVICE_OBJECT DeviceObject
|
|
);
|
|
|