You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MangoHud/src/memory.h

22 lines
492 B
C

#pragma once
#ifndef MANGOHUD_MEMORY_H
#define MANGOHUD_MEMORY_H
#include <stdio.h>
#include <thread>
extern float memused, memmax;
struct memory_information {
/* memory information in kilobytes */
unsigned long long mem, memwithbuffers, memeasyfree, memfree, memmax,
memdirty;
unsigned long long swap, swapfree, swapmax;
unsigned long long bufmem, buffers, cached;
};
void update_meminfo(void);
FILE *open_file(const char *file, int *reported);
#endif //MANGOHUD_MEMORY_H