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
43 lines
684 B
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
errlog.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the err log header
|
|
|
|
Author:
|
|
|
|
Hanumant Yadav (hanumany)
|
|
|
|
Environment:
|
|
|
|
NT Kernel Model Driver only
|
|
|
|
--*/
|
|
|
|
#ifndef _ERRLOG_H_
|
|
#define _ERRLOG_H_
|
|
|
|
extern PDRIVER_OBJECT AcpiDriverObject;
|
|
|
|
|
|
NTSTATUS
|
|
ACPIWriteEventLogEntry (
|
|
IN ULONG ErrorCode,
|
|
IN PVOID InsertionStrings, OPTIONAL
|
|
IN ULONG StringCount, OPTIONAL
|
|
IN PVOID DumpData, OPTIONAL
|
|
IN ULONG DataSize OPTIONAL
|
|
);
|
|
|
|
PDEVICE_OBJECT
|
|
ACPIGetRootDeviceObject(
|
|
VOID
|
|
);
|
|
|
|
#endif
|