[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / utils / MemUtils.h
blob026690864fe3777880ae9aa0d7302178b143cb8a
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include <cstdint>
12 #include <memory>
14 namespace KODI
16 namespace MEMORY
18 struct MemoryStatus
20 unsigned int memoryLoad;
22 uint64_t totalPhys;
23 uint64_t availPhys;
26 void* AlignedMalloc(size_t s, size_t alignTo);
27 void AlignedFree(void* p);
28 void GetMemoryStatus(MemoryStatus* buffer);