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.
38 lines
499 B
38 lines
499 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
butt.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the enumerated for the ACPI driver, NT version
|
|
|
|
Author:
|
|
|
|
Stephane Plante (splante)
|
|
|
|
Environment:
|
|
|
|
NT Kernel Model Driver only
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _WORKER_H_
|
|
#define _WORKER_H_
|
|
|
|
VOID
|
|
ACPIInitializeWorker (
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
ACPISetDeviceWorker (
|
|
IN PDEVICE_EXTENSION DevExt,
|
|
IN ULONG Events
|
|
);
|
|
|
|
#endif _WORKER_H_
|