]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Dxe/LzmaDxeMemory.c
Add LzmaCustomDecompressLib based on the LZMA SDK 4.65 which was
[mirror_edk2.git] / IntelFrameworkModulePkg / Library / LzmaCustomDecompressLib / Dxe / LzmaDxeMemory.c
1 /** @file
2 LZMA Memory Allocation for DXE
3
4 Copyright (c) 2006 - 2009, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include <Uefi.h>
16 #include <Library/DebugLib.h>
17 #include <Library/MemoryAllocationLib.h>
18 #include "Sdk/C/Types.h"
19
20 STATIC
21 VOID *
22 SzAlloc(
23 void *p,
24 size_t size
25 )
26 {
27 void *np;
28 p = p;
29 np = AllocatePool(size);
30 return np;
31 }
32
33 STATIC
34 VOID
35 SzFree(
36 void *p,
37 void *address
38 )
39 {
40 p = p;
41 if (address != NULL) {
42 FreePool(address);
43 }
44 }
45
46 ISzAlloc g_Alloc = { SzAlloc, SzFree };
47