diff options
Diffstat (limited to 'source/include/acutils.h')
-rw-r--r-- | source/include/acutils.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source/include/acutils.h b/source/include/acutils.h index b0062340632c7..e5656c48a7099 100644 --- a/source/include/acutils.h +++ b/source/include/acutils.h @@ -225,6 +225,10 @@ AcpiUtHexToAsciiChar ( UINT64 Integer, UINT32 Position); +UINT8 +AcpiUtAsciiCharToHex ( + int HexChar); + BOOLEAN AcpiUtValidObjectType ( ACPI_OBJECT_TYPE Type); @@ -1135,6 +1139,10 @@ const AH_DEVICE_ID * AcpiAhMatchHardwareId ( char *Hid); +const char * +AcpiAhMatchUuid ( + UINT8 *Data); + /* * utprint - printf/vprintf output functions */ @@ -1176,4 +1184,12 @@ AcpiUtFilePrintf ( ...); #endif +/* + * utuuid -- UUID support functions + */ +void +AcpiUtConvertStringToUuid ( + char *InString, + UINT8 *UuidBuffer); + #endif /* _ACUTILS_H */ |