4coder/4ed_log.h

25 lines
319 B
C
Raw Normal View History

2019-08-16 02:54:06 +00:00
/*
* Mr. 4th Dimention - Allen Webster
*
* 14.08.2019
*
* Core logging structures.
*
*/
// TOP
#if !defined(FRED_LOG_H)
#define FRED_LOG_H
struct Log{
System_Mutex mutex;
Arena arena;
List_String_Const_u8 list;
volatile i32 disabled_thread_id;
2021-05-17 06:13:27 +00:00
b32 stdout_log_enabled;
2019-08-16 02:54:06 +00:00
};
#endif
// BOTTOM