2023-03-05 15:05:43 +00:00
|
|
|
/************************************************************//**
|
|
|
|
*
|
|
|
|
* @file: milepost.h
|
|
|
|
* @author: Martin Fouilleul
|
|
|
|
* @date: 13/02/2021
|
|
|
|
* @revision:
|
|
|
|
*
|
|
|
|
*****************************************************************/
|
|
|
|
#ifndef __MILEPOST_H_
|
|
|
|
#define __MILEPOST_H_
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
// utility layer
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
#include"platform.h"
|
|
|
|
#include"typedefs.h"
|
|
|
|
#include"macro_helpers.h"
|
|
|
|
#include"debug_log.h"
|
|
|
|
#include"lists.h"
|
|
|
|
#include"memory.h"
|
|
|
|
#include"strings.h"
|
|
|
|
#include"utf8.h"
|
|
|
|
#include"hash.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
// platform layer
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
#include"platform_clock.h"
|
|
|
|
/*
|
|
|
|
#include"platform_rng.h"
|
|
|
|
#include"platform_socket.h"
|
|
|
|
#include"platform_thread.h"
|
|
|
|
*/
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
// application/graphics layer
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
#include"mp_app.h"
|
|
|
|
#include"graphics.h"
|
|
|
|
#include"ui.h"
|
|
|
|
|
|
|
|
#ifdef MG_INCLUDE_GL_API
|
|
|
|
#include"gl_api.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//#include"ui.h"
|
|
|
|
|
|
|
|
#endif //__MILEPOST_H_
|