TianoCore EDK2 master
Loading...
Searching...
No Matches
BrotliDecUefiSupport.h
Go to the documentation of this file.
1
11#ifndef __BROTLI_DECOMPRESS_UEFI_SUP_H__
12#define __BROTLI_DECOMPRESS_UEFI_SUP_H__
13
14#include <Library/BaseLib.h>
16#include <Library/DebugLib.h>
17#define memcpy CopyMem
18#define memmove CopyMem
19#define memset(dest, ch, count) SetMem(dest,(UINTN)(count),(UINT8)(ch))
20#define malloc BrDummyMalloc
21#define free BrDummyFree
22
23typedef INT8 int8_t;
24typedef INT16 int16_t;
25typedef INT32 int32_t;
26typedef INT64 int64_t;
27typedef UINT8 uint8_t;
28typedef UINT16 uint16_t;
29typedef UINT32 uint32_t;
30typedef UINT64 uint64_t;
31typedef UINTN size_t;
32
33VOID *
35 IN size_t Size
36 );
37
38VOID
40 IN VOID *Ptr
41 );
42
43#endif
UINT64 UINTN
VOID BrDummyFree(IN VOID *Ptr)
VOID * BrDummyMalloc(IN size_t Size)
#define IN
Definition: Base.h:279