Source code of Windows XP (NT5)
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.

33 lines
710 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. IoDevObj.h
  5. Abstract:
  6. This header exposes various routines for managing device objects.
  7. Author:
  8. Adrian J. Oney - April 21, 2002
  9. Revision History:
  10. --*/
  11. NTSTATUS
  12. IoDevObjCreateDeviceSecure(
  13. IN PDRIVER_OBJECT DriverObject,
  14. IN ULONG DeviceExtensionSize,
  15. IN PUNICODE_STRING DeviceName OPTIONAL,
  16. IN DEVICE_TYPE DeviceType,
  17. IN ULONG DeviceCharacteristics,
  18. IN BOOLEAN Exclusive,
  19. IN PCUNICODE_STRING DefaultSDDLString,
  20. IN LPCGUID DeviceClassGuid,
  21. OUT PDEVICE_OBJECT *DeviceObject
  22. );