]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Framework/Protocol/AcpiS3Save/AcpiS3Save.h
Maintainers.txt: Remove EdkCompatibilityPkg information
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Protocol / AcpiS3Save / AcpiS3Save.h
CommitLineData
3eb9473e 1/*++\r
2\r
f57387d5
HT
3Copyright (c) 2004 - 2007, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials \r
3eb9473e 5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 AcpiS3Save.h\r
15\r
16Abstract:\r
17\r
18 \r
19--*/\r
20\r
21#ifndef _ACPI_S3_SAVE_PROTOCOL_H\r
22#define _ACPI_S3_SAVE_PROTOCOL_H\r
23\r
24//\r
25// Includes\r
26//\r
27#include "Tiano.h"\r
28\r
29//\r
30// Forward reference for pure ANSI compatability\r
31//\r
32EFI_FORWARD_DECLARATION (EFI_ACPI_S3_SAVE_PROTOCOL);\r
33\r
34//\r
35// S3 Save Protocol GUID\r
36//\r
37#define EFI_ACPI_S3_SAVE_GUID \\r
38 { \\r
7ccf38a3 39 0x125f2de1, 0xfb85, 0x440c, {0xa5, 0x4c, 0x4d, 0x99, 0x35, 0x8a, 0x8d, 0x38} \\r
3eb9473e 40 }\r
41\r
42//\r
43// Protocol Data Structures\r
44//\r
45typedef\r
46EFI_STATUS\r
3eb9473e 47(EFIAPI *EFI_ACPI_S3_SAVE) (\r
48 IN EFI_ACPI_S3_SAVE_PROTOCOL * This,\r
49 IN VOID * LegacyMemoryAddress \r
50 );\r
51\r
52typedef \r
2c40a813 53EFI_STATUS \r
3eb9473e 54(EFIAPI *EFI_ACPI_GET_LEGACY_MEMORY_SIZE) (\r
55 IN EFI_ACPI_S3_SAVE_PROTOCOL * This,\r
56 OUT UINTN * Size\r
57);\r
58\r
5d46191d 59struct _EFI_ACPI_S3_SAVE_PROTOCOL {\r
3eb9473e 60 EFI_ACPI_GET_LEGACY_MEMORY_SIZE GetLegacyMemorySize;\r
61 EFI_ACPI_S3_SAVE S3Save;\r
5d46191d 62};\r
3eb9473e 63\r
64extern EFI_GUID gEfiAcpiS3SaveGuid;\r
65\r
66#endif\r