mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
6904101c44
== DETAILS Really simple code cleanup, because my editor flags trailing whitespaces and it's pretty annoying.
13 lines
164 B
C
13 lines
164 B
C
#ifndef _MEM2_MANAGER_H
|
|
#define _MEM2_MANAGER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
bool gx_init_mem2(void);
|
|
|
|
uint32_t gx_mem2_used(void);
|
|
|
|
uint32_t gx_mem2_total(void);
|
|
|
|
#endif
|