]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleService.h
Update all files to follow doxygen style file header.
[mirror_edk2.git] / MdeModulePkg / Universal / CapsuleRuntimeDxe / CapsuleService.h
1 /** @file
2 Capsule Runtime Service
3
4 Copyright (c) 2006 - 2008, 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 _CAPSULE_RUNTIME_H_
16 #define _CAPSULE_RUNTIME_H_
17
18
19 #include <PiDxe.h>
20
21 #include <Protocol/Capsule.h>
22 #include <Guid/CapsuleVendor.h>
23
24 #include <Library/UefiDriverEntryPoint.h>
25 #include <Library/UefiRuntimeLib.h>
26 #include <Library/DebugLib.h>
27 #include <Library/PcdLib.h>
28 #include <Library/UefiBootServicesTableLib.h>
29 #include <Library/CapsuleLib.h>
30
31 EFI_STATUS
32 EFIAPI
33 UpdateCapsule(
34 IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
35 IN UINTN CapsuleCount,
36 IN EFI_PHYSICAL_ADDRESS ScatterGatherList OPTIONAL
37 );
38
39 EFI_STATUS
40 EFIAPI
41 QueryCapsuleCapabilities(
42 IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
43 IN UINTN CapsuleCount,
44 OUT UINT64 *MaxiumCapsuleSize,
45 OUT EFI_RESET_TYPE *ResetType
46 );
47
48 #endif
49