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.

37 lines
752 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. viddi.h
  5. Abstract:
  6. This header contains private information used for supplying Verifier Device
  7. Driver Interfaces. This header should be included only by vfddi.c.
  8. Author:
  9. Adrian J. Oney (adriao) 1-May-2001
  10. Environment:
  11. Kernel mode
  12. Revision History:
  13. --*/
  14. VOID
  15. ViDdiThrowException(
  16. IN ULONG BugCheckMajorCode,
  17. IN ULONG BugCheckMinorCode,
  18. IN VF_FAILURE_CLASS FailureClass,
  19. IN OUT PULONG AssertionControl,
  20. IN PSTR DebuggerMessageText,
  21. IN PSTR ParameterFormatString,
  22. IN va_list * MessageParameters
  23. );