]> git.proxmox.com Git - mirror_edk2.git/blame - EmulatorPkg/Sec/Sec.h
EmulatorPkg: Remove all trailing whitespace
[mirror_edk2.git] / EmulatorPkg / Sec / Sec.h
CommitLineData
65e3f333 1/*++ @file
2 Stub SEC that is called from the OS appliation that is the root of the emulator.
d18d8a1d 3
4 The OS application will call the SEC with the PEI Entry Point API.
65e3f333 5
6Copyright (c) 2011, Apple Inc. All rights reserved.<BR>
7This program and the accompanying materials
8are licensed and made available under the terms and conditions of the BSD License
9which accompanies this distribution. The full text of the license may be found at
10http://opensource.org/licenses/bsd-license.php
11
12THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15**/
16
17#ifndef __SEC_H___
18#define __SEC_H___
19
20
21#include <PiPei.h>
946bfba2 22#include <Library/EmuMagicPageLib.h>
65e3f333 23#include <Library/DebugLib.h>
24#include <Library/PeiServicesLib.h>
25#include <Library/PeCoffGetEntryPointLib.h>
26#include <Library/BaseMemoryLib.h>
65e3f333 27
28#include <Ppi/TemporaryRamSupport.h>
29
30
31//
32// I think this shold be defined in a MdePkg include file?
33//
34VOID
35EFIAPI
36ProcessLibraryConstructorList (
37 VOID
38 );
39
40EFI_STATUS
41EFIAPI
42SecTemporaryRamSupport (
43 IN CONST EFI_PEI_SERVICES **PeiServices,
44 IN EFI_PHYSICAL_ADDRESS TemporaryMemoryBase,
45 IN EFI_PHYSICAL_ADDRESS PermanentMemoryBase,
46 IN UINTN CopySize
47 );
48
49
50#endif
51