Renamed types

This commit is contained in:
Jozef Nagy 2024-05-27 21:45:04 +02:00
parent 5c7e1d3246
commit d7b6e4cb4a
No known key found for this signature in database
GPG key ID: 5B49DC29F09685D6
20 changed files with 1330 additions and 1320 deletions

View file

@ -14,9 +14,9 @@ EFI_STATUS
(EFIAPI *EFI_DECOMPRESS_GET_INFO)(
IN EFI_DECOMPRESS_PROTOCOL *This,
IN VOID *Source,
IN UINT32 SourceSize,
OUT UINT32 *DestinationSize,
OUT UINT32 *ScratchSize
IN EFI_UINT32 SourceSize,
OUT EFI_UINT32 *DestinationSize,
OUT EFI_UINT32 *ScratchSize
);
typedef
@ -24,11 +24,11 @@ EFI_STATUS
(EFIAPI *EFI_DECOMPRESS_DECOMPRESS)(
IN EFI_DECOMPRESS_PROTOCOL *This,
IN VOID *Source,
IN UINT32 SourceSize,
IN EFI_UINT32 SourceSize,
IN OUT VOID *Destination,
IN UINT32 DestinationSize,
IN EFI_UINT32 DestinationSize,
IN OUT VOID *Scratch,
IN UINT32 ScratchSize
IN EFI_UINT32 ScratchSize
);
typedef struct _EFI_DECOMPRESS_PROTOCOL {