OpenCore  1.0.4
OpenCore Bootloader
Loading...
Searching...
No Matches
mp3compat.h File Reference
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/MemoryAllocationLib.h>

Go to the source code of this file.

Macros

#define memset(Dst, Val, Size)
 
#define memcpy(dst, src, len)
 
#define memmove(dst, src, len)
 
#define malloc(Size)
 
#define free(Ptr)
 

Detailed Description

Copyright (C) 2021, vit9696. All rights reserved.

All rights reserved.

This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php

THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

Definition in file mp3compat.h.

Macro Definition Documentation

◆ free

#define free ( Ptr)
Value:
FreePool (Ptr)

Definition at line 47 of file mp3compat.h.

◆ malloc

#define malloc ( Size)
Value:
AllocatePool (Size)
DMG_SIZE_DEVICE_PATH Size

Definition at line 46 of file mp3compat.h.

◆ memcpy

#define memcpy ( dst,
src,
len )
Value:
CopyMem(dst, src, len)
VOID *EFIAPI CopyMem(OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length)

Definition at line 43 of file mp3compat.h.

◆ memmove

#define memmove ( dst,
src,
len )
Value:
CopyMem(dst, src, len)

Definition at line 44 of file mp3compat.h.

◆ memset

#define memset ( Dst,
Val,
Size )
Value:
SetMem ((Dst), (Size), (Val))
VOID *EFIAPI SetMem(OUT VOID *Buffer, IN UINTN Length, IN UINT8 Value)

Definition at line 42 of file mp3compat.h.