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.

43 lines
684 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. errlog.h
  5. Abstract:
  6. This module contains the err log header
  7. Author:
  8. Hanumant Yadav (hanumany)
  9. Environment:
  10. NT Kernel Model Driver only
  11. --*/
  12. #ifndef _ERRLOG_H_
  13. #define _ERRLOG_H_
  14. extern PDRIVER_OBJECT AcpiDriverObject;
  15. NTSTATUS
  16. ACPIWriteEventLogEntry (
  17. IN ULONG ErrorCode,
  18. IN PVOID InsertionStrings, OPTIONAL
  19. IN ULONG StringCount, OPTIONAL
  20. IN PVOID DumpData, OPTIONAL
  21. IN ULONG DataSize OPTIONAL
  22. );
  23. PDEVICE_OBJECT
  24. ACPIGetRootDeviceObject(
  25. VOID
  26. );
  27. #endif