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.

45 lines
885 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. WlpWrap.h
  5. Abstract:
  6. This header contains private information for wrapping library functions.
  7. Author:
  8. Adrian J. Oney - April 21, 2002
  9. Revision History:
  10. --*/
  11. typedef NTSTATUS (*PFN_IO_CREATE_DEVICE_SECURE)(
  12. IN PDRIVER_OBJECT DriverObject,
  13. IN ULONG DeviceExtensionSize,
  14. IN PUNICODE_STRING DeviceName OPTIONAL,
  15. IN DEVICE_TYPE DeviceType,
  16. IN ULONG DeviceCharacteristics,
  17. IN BOOLEAN Exclusive,
  18. IN PCUNICODE_STRING DefaultSDDLString,
  19. IN LPCGUID DeviceClassGuid,
  20. OUT PDEVICE_OBJECT *DeviceObject
  21. );
  22. typedef NTSTATUS
  23. (*PFN_IO_VALIDATE_DEVICE_IOCONTROL_ACCESS)(
  24. IN PIRP Irp,
  25. IN ULONG RequiredAccess
  26. );
  27. VOID
  28. WdmlibInit(
  29. VOID
  30. );