]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Framework/Protocol/SmmCpuState/SmmCpuState.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Protocol / SmmCpuState / SmmCpuState.h
1 /*++
2
3 Copyright (c) 2005, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12
13 Module Name:
14
15 SmmCpuState.h
16
17 Abstract:
18
19 Protocol definition for EFI_SMM_CPU_SAVE_STATE protocol
20
21 Revision History
22
23 --*/
24
25 #ifndef _SMMSAVESTATE_H_
26 #define _SMMSAVESTATE_H_
27
28 #include "CpuSaveState.h"
29
30 //
31 // Global ID for the Sx SMI Protocol
32 //
33 // {21F302AD-6E94-471b-84BC-B14800403A1D}
34 #define EFI_SMM_CPU_SAVE_STATE_PROTOCOL_GUID \
35 { 0x21f302ad, 0x6e94, 0x471b, {0x84, 0xbc, 0xb1, 0x48, 0x0, 0x40, 0x3a, 0x1d} }
36
37 typedef struct _EFI_SMM_CPU_SAVE_STATE_PROTOCOL EFI_SMM_CPU_SAVE_STATE_PROTOCOL;
38
39 struct _EFI_SMM_CPU_SAVE_STATE_PROTOCOL {
40 EFI_SMM_CPU_STATE **CpuSaveState;
41 };
42
43 extern EFI_GUID gEfiSmmCpuSaveStateProtocolGuid;
44
45 #endif // _SMMSAVESTATE_H_