mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-12 23:51:37 -07:00
18 lines
304 B
C
18 lines
304 B
C
#ifdef INTELLISENSE_DIRECTIVES
|
|
# include "metadesk.h"
|
|
#endif
|
|
|
|
#include "base/base.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.
|
|
#endif
|
|
|
|
#include "os/os.c"
|
|
|
|
#include "mdesk/mdesk.c"
|