mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
18 lines
388 B
C
18 lines
388 B
C
/** @file
|
|
Copyright (c) 2022, vit9696. All rights reserved.
|
|
SPDX-License-Identifier: BSD-3-Clause
|
|
**/
|
|
|
|
#ifndef USER_MEMORY_H
|
|
#define USER_MEMORY_H
|
|
|
|
extern UINTN mPoolAllocations;
|
|
extern UINTN mPageAllocations;
|
|
|
|
extern UINT64 mPoolAllocationMask;
|
|
extern UINTN mPoolAllocationIndex;
|
|
extern UINT64 mPageAllocationMask;
|
|
extern UINTN mPageAllocationIndex;
|
|
|
|
#endif // USER_MEMORY_H
|