]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/Include/Library/SecDispatchTableLib.h
6cebb58b9b486dbf6a7a90fc95c2d6db9741ebc1
[mirror_edk2.git] / UnixPkg / Include / Library / SecDispatchTableLib.h
1 /** @file
2 Allows an override of the SEC SEC PPI Dispatch Table. This allows
3 customized PPIs to be passed into the PEI Core.
4
5 Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php.
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16
17 #ifndef __SEC_DISPATCH_TABLE_LIB_H__
18 #define __SEC_DISPATCH_TABLE_LIB_H__
19
20 /**
21 Allow an override of the Sec PPI Dispatch Table. This table contains PPIs passed
22 up from SEC to PEI. This function is responcible for allocating space for the
23 overridden table.
24
25
26 @param OriginalTable SECs default PPI dispatch table
27
28 @return OriginalTable or override of the table
29
30 **/
31 EFI_PEI_PPI_DESCRIPTOR *
32 EFIAPI
33 OverrideDispatchTable (
34 IN CONST EFI_PEI_PPI_DESCRIPTOR *OriginalTable
35 );
36
37
38 #endif