]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Library/Dxe/Include/Ia32EfiRuntimeDriverLib.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / Dxe / Include / Ia32EfiRuntimeDriverLib.h
CommitLineData
3eb9473e 1/*++\r
2\r
4ea9375a
HT
3Copyright (c) 2004, 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 Ia32EfiRuntimeDriverLib.h\r
15\r
16Abstract:\r
17\r
18 Light weight lib to support IA32 EFI Libraries.\r
19\r
20--*/\r
21\r
22#ifndef _IA32_EFI_RUNTIME_LIB_H_\r
23#define _IA32_EFI_RUNTIME_LIB_H_\r
24\r
25#include "Tiano.h"\r
26#include "EfiRuntimeLib.h"\r
27#include EFI_PROTOCOL_DEFINITION (ExtendedSalGuid)\r
28\r
29typedef\r
30EFI_STATUS\r
31(EFIAPI *COMMON_PROC_ENTRY) (\r
32 IN UINTN FunctionId,\r
33 IN UINTN Arg2,\r
34 IN UINTN Arg3,\r
35 IN UINTN Arg4,\r
36 IN UINTN Arg5,\r
37 IN UINTN Arg6,\r
38 IN UINTN Arg7,\r
39 IN UINTN Arg8\r
40 );\r
41\r
42typedef struct {\r
43 COMMON_PROC_ENTRY CommonProcEntry;\r
44} COMMON_PROC_ENTRY_STRUCT;\r
45\r
46EFI_STATUS\r
47InstallPlatformRuntimeLib (\r
48 IN EFI_GUID *Guid,\r
49 IN COMMON_PROC_ENTRY_STRUCT *CommonEntry\r
50 )\r
51/*++\r
52\r
53Routine Description:\r
54\r
55 Install platform runtime lib.\r
56\r
57Arguments:\r
58\r
59 Guid - Guid for runtime lib\r
60 CommonEntry - Common entry\r
61\r
62Returns: \r
63\r
64 Status code\r
65\r
66--*/\r
67;\r
68\r
69EFI_STATUS\r
70GetPlatformRuntimeLib (\r
71 IN EFI_SYSTEM_TABLE *SystemTable\r
72 )\r
73/*++\r
74\r
75Routine Description:\r
76\r
77 Get platform runtime lib.\r
78\r
79Arguments:\r
80\r
81 SystemTable - Pointer to system table\r
82\r
83Returns: \r
84\r
85 Status code\r
86\r
87--*/\r
88;\r
89\r
90EFI_STATUS\r
91ConvertPlatformRuntimeLibPtr (\r
92 IN EFI_RUNTIME_SERVICES *mRT\r
93 )\r
94/*++\r
95\r
96Routine Description:\r
97\r
98 Convert platform runtime lib pointer. \r
99\r
100Arguments:\r
101\r
102 mRT - Pointer to runtime service table.\r
103\r
104Returns: \r
105\r
106 Status code\r
107\r
108--*/\r
109;\r
110\r
111#endif\r