TianoCore EDK2 master
Loading...
Searching...
No Matches
Decompress.h
Go to the documentation of this file.
1
9#ifndef __DECOMPRESS_H__
10#define __DECOMPRESS_H__
11
12#define EFI_DECOMPRESS_PROTOCOL_GUID \
13 { \
14 0xd8117cfe, 0x94a6, 0x11d4, {0x9a, 0x3a, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
15 }
16
18
52typedef
56 IN VOID *Source,
57 IN UINT32 SourceSize,
58 OUT UINT32 *DestinationSize,
59 OUT UINT32 *ScratchSize
60 );
61
94typedef
98 IN VOID *Source,
99 IN UINT32 SourceSize,
100 IN OUT VOID *Destination,
101 IN UINT32 DestinationSize,
102 IN OUT VOID *Scratch,
103 IN UINT32 ScratchSize
104 );
105
111 EFI_DECOMPRESS_DECOMPRESS Decompress;
112};
113
114extern EFI_GUID gEfiDecompressProtocolGuid;
115
116#endif
#define IN
Definition: Base.h:279
#define OUT
Definition: Base.h:284
EFI_STATUS(EFIAPI * EFI_DECOMPRESS_GET_INFO)(IN EFI_DECOMPRESS_PROTOCOL *This, IN VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize)
Definition: Decompress.h:54
EFI_STATUS(EFIAPI * EFI_DECOMPRESS_DECOMPRESS)(IN EFI_DECOMPRESS_PROTOCOL *This, IN VOID *Source, IN UINT32 SourceSize, IN OUT VOID *Destination, IN UINT32 DestinationSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize)
Definition: Decompress.h:96
RETURN_STATUS EFI_STATUS
Definition: UefiBaseType.h:29
Definition: Base.h:213