mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-19 16:35:20 +01:00
Qt/QML edition
This commit is contained in:
commit
d7b361ba44
2168 changed files with 721948 additions and 0 deletions
25
dependencies/cmliblzma/liblzma/common/hardware_physmem.c
vendored
Normal file
25
dependencies/cmliblzma/liblzma/common/hardware_physmem.c
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
/// \file hardware_physmem.c
|
||||
/// \brief Get the total amount of physical memory (RAM)
|
||||
//
|
||||
// Author: Jonathan Nieder
|
||||
//
|
||||
// This file has been put into the public domain.
|
||||
// You can do whatever you want with this file.
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "common.h"
|
||||
|
||||
#include "tuklib_physmem.h"
|
||||
|
||||
|
||||
extern LZMA_API(uint64_t)
|
||||
lzma_physmem(void)
|
||||
{
|
||||
// It is simpler to make lzma_physmem() a wrapper for
|
||||
// tuklib_physmem() than to hack appropriate symbol visiblity
|
||||
// support for the tuklib modules.
|
||||
return tuklib_physmem();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue