orca/src/milepost.h

52 lines
1.3 KiB
C
Raw Normal View History

2022-08-14 16:19:40 +00:00
/************************************************************//**
*
* @file: milepost.h
* @author: Martin Fouilleul
* @date: 13/02/2021
* @revision:
*
*****************************************************************/
#ifndef __MILEPOST_H_
#define __MILEPOST_H_
2022-12-22 17:24:43 +00:00
//----------------------------------------------------------------
// utility layer
//----------------------------------------------------------------
#include"platform.h"
2022-08-14 16:19:40 +00:00
#include"typedefs.h"
#include"macro_helpers.h"
#include"debug_log.h"
#include"lists.h"
#include"memory.h"
#include"strings.h"
#include"utf8.h"
2022-12-22 17:24:43 +00:00
#include"hash.h"
2022-08-14 16:19:40 +00:00
2022-12-22 17:24:43 +00:00
//----------------------------------------------------------------
// platform layer
//----------------------------------------------------------------
2022-08-14 16:19:40 +00:00
#include"platform_clock.h"
/*
#include"platform_rng.h"
#include"platform_socket.h"
#include"platform_thread.h"
*/
2022-12-22 17:24:43 +00:00
//----------------------------------------------------------------
// application layer
//----------------------------------------------------------------
2022-08-14 16:19:40 +00:00
#include"mp_app.h"
2022-12-22 17:24:43 +00:00
#if defined(OS_WIN64) || defined(OS_WIN32)
#define WIN32_GL_LOADER_API
#include"win32_gl_loader.h"
#endif
//----------------------------------------------------------------
// graphics/ui layer
//----------------------------------------------------------------
2022-08-14 16:19:40 +00:00
#include"graphics.h"
//#include"ui.h"
2022-08-14 16:19:40 +00:00
#endif //__MILEPOST_H_