mirror of
https://github.com/acpica/acpica/
synced 2025-01-30 05:05:12 +03:00
Added a 64-bit structure overlay typdef
date 2001.07.19.19.59.00; author rmoore1; state Exp;
This commit is contained in:
parent
d71a266646
commit
738303827f
@ -1,7 +1,7 @@
|
|||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
*
|
*
|
||||||
* Name: actypes.h - Common data types for the entire ACPI subsystem
|
* Name: actypes.h - Common data types for the entire ACPI subsystem
|
||||||
* $Revision: 1.185 $
|
* $Revision: 1.186 $
|
||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
@ -285,6 +285,13 @@ typedef UINT32 ACPI_NAME; /* 4-byte ACPI name */
|
|||||||
typedef char* ACPI_STRING; /* Null terminated ASCII string */
|
typedef char* ACPI_STRING; /* Null terminated ASCII string */
|
||||||
typedef void* ACPI_HANDLE; /* Actually a ptr to an Node */
|
typedef void* ACPI_HANDLE; /* Actually a ptr to an Node */
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
UINT32 Lo;
|
||||||
|
UINT32 Hi;
|
||||||
|
|
||||||
|
} UINT64_STRUCT;
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Acpi integer width. In ACPI version 1, integers are
|
* Acpi integer width. In ACPI version 1, integers are
|
||||||
|
Loading…
x
Reference in New Issue
Block a user