]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/DxeServicesTableLib/DxeServicesTableLibInternal.h
Enable Intel IPF compilation for MdePkg.
[mirror_edk2.git] / MdePkg / Library / DxeServicesTableLib / DxeServicesTableLibInternal.h
1 /** @file
2 Internal Header file for Dxe Services Table Library Instance.
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _DXE_SERVICE_TABLE_LIB_INTERNAL_H
16 #define _DXE_SERVICE_TABLE_LIB_INTERNAL_H
17
18
19 /**
20 The constructor function caches the pointer of DXE Services Table.
21
22 The constructor function caches the pointer of DXE Services Table.
23 It will ASSERT() if that operation fails.
24 It will ASSERT() if the pointer of DXE Services Table is NULL.
25 It will always return EFI_SUCCESS.
26
27 @param ImageHandle The firmware allocated handle for the EFI image.
28 @param SystemTable A pointer to the EFI System Table.
29
30 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
31
32 **/
33 EFI_STATUS
34 EFIAPI
35 DxeServicesTableLibConstructor (
36 IN EFI_HANDLE ImageHandle,
37 IN EFI_SYSTEM_TABLE *SystemTable
38 )
39 ;
40 #endif