progress on compiler errors

This commit is contained in:
ed
2025-02-08 22:36:11 -05:00
parent 835bfe654b
commit 3b12268f46
31 changed files with 535 additions and 468 deletions
+20 -7
View File
@@ -1,17 +1,30 @@
#ifdef INTELLISENSE_DIRECTIVES
# include "metadesk.h"
#endif
#include "metadesk.h"
#include "base/base.c"
#undef MARKUP_LAYER_COLOR
#define MARKUP_LAYER_COLOR 0.20f, 0.60f, 0.80f
#include "base/platform.c"
MD_NS_BEGIN
#include "base/debug.c"
#include "base/memory_substrate.c"
#include "base/arena.c"
#include "base/strings.c"
#include "base/text.c"
#include "base/thread_context.c"
#include "base/command_line.c"
#include "base/logger.c"
#include "base/entry_point.c"
#include "base/time.c"
#if OS_WINDOWS
# include "os/win32/os_win32.c"
#elif OS_LINUX
# include "os/linux/os_linux.c"
#else
# error OS core layer not implemented for this operating system.
# include "os/win32/os_win32.c"
#endif
#include "os/os.c"
#include "mdesk/mdesk.c"
MD_NS_END