roo_e/shared/memory.h
2022-06-02 19:15:53 -05:00

19 lines
267 B
C

#ifndef MEMORY_H
#define MEMORY_H
#include "os.h"
#ifdef MEMORY_CHECK_ENABLED
#define MEMWATCH
#include "thirdparty/memwatch/memwatch.h"
#endif
FILE *memoryLogHandleGet(void);
void memoryShutdown(void);
void memoryStartup(char *appName);
#endif // MEMORY_H