Leaked source code of windows server 2003
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.

46 lines
721 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. PpDrvDB.h
  5. Abstract:
  6. Contains PnP routines to deal with driver load\unload.
  7. Author:
  8. Santosh S. Jodh - January 22, 2001
  9. Revision History:
  10. --*/
  11. NTSTATUS
  12. PpInitializeBootDDB(
  13. IN PLOADER_PARAMETER_BLOCK LoaderBlock
  14. );
  15. NTSTATUS
  16. PpReleaseBootDDB(
  17. VOID
  18. );
  19. NTSTATUS
  20. PpGetBlockedDriverList(
  21. IN OUT GUID *Buffer,
  22. IN OUT PULONG Size,
  23. IN ULONG Flags
  24. );
  25. NTSTATUS
  26. PpCheckInDriverDatabase(
  27. IN PUNICODE_STRING KeyName,
  28. IN HANDLE KeyHandle,
  29. IN PVOID ImageBase,
  30. IN ULONG ImageSize,
  31. IN BOOLEAN IsFilter,
  32. OUT LPGUID EntryGuid
  33. );