XenevaOS
Loading...
Searching...
No Matches
Decompress.h
Go to the documentation of this file.
1
15#ifndef __DECOMPRESS_H__
16#define __DECOMPRESS_H__
17
18#define EFI_DECOMPRESS_PROTOCOL_GUID \
19 { \
20 0xd8117cfe, 0x94a6, 0x11d4, {0x9a, 0x3a, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
21 }
22
24
58typedef
62 IN VOID *Source,
63 IN UINT32 SourceSize,
64 OUT UINT32 *DestinationSize,
65 OUT UINT32 *ScratchSize
66 );
67
100typedef
104 IN VOID *Source,
105 IN UINT32 SourceSize,
106 IN OUT VOID *Destination,
107 IN UINT32 DestinationSize,
108 IN OUT VOID *Scratch,
109 IN UINT32 ScratchSize
110 );
111
119
121
122#endif
#define EFIAPI
Definition ProcessorBind.h:172
unsigned int UINT32
Definition ProcessorBind.h:102
#define IN
Definition Base.h:347
#define OUT
Definition Base.h:352
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:60
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:102
EFI_GUID gEfiDecompressProtocolGuid
RETURN_STATUS EFI_STATUS
Definition UefiBaseType.h:33
#define VOID
Definition acefi.h:190
Definition Base.h:281
Definition Decompress.h:115
EFI_DECOMPRESS_GET_INFO GetInfo
Definition Decompress.h:116
EFI_DECOMPRESS_DECOMPRESS Decompress
Definition Decompress.h:117