2018-05-11 20:46:26 +00:00
|
|
|
/*
|
2018-11-27 18:07:07 +00:00
|
|
|
4coder_custom.h
|
2018-05-11 20:46:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
2017-01-23 06:19:43 +00:00
|
|
|
|
|
|
|
#ifndef FCODER_CUSTOM_H
|
|
|
|
#define FCODER_CUSTOM_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2019-02-24 07:22:16 +00:00
|
|
|
#include <stdarg.h>
|
2017-01-23 06:19:43 +00:00
|
|
|
|
2019-02-24 07:22:16 +00:00
|
|
|
#include "4coder_base_types.h"
|
2019-02-24 22:54:57 +00:00
|
|
|
#include "4coder_base_types.cpp"
|
2018-11-28 04:36:09 +00:00
|
|
|
#include "4coder_lib/4coder_arena.h"
|
|
|
|
#include "4coder_lib/4coder_heap.h"
|
2017-01-23 06:19:43 +00:00
|
|
|
#include "4coder_lib/4coder_string.h"
|
2017-11-21 00:35:35 +00:00
|
|
|
#include "4coder_lib/4cpp_lexer_types.h"
|
2018-11-27 18:07:07 +00:00
|
|
|
#include "4coder_API/4coder_version.h"
|
|
|
|
#include "4coder_API/4coder_keycodes.h"
|
2018-11-27 17:59:14 +00:00
|
|
|
#include "4coder_API/4coder_style.h"
|
2018-11-27 18:07:07 +00:00
|
|
|
#include "4coder_API/4coder_types.h"
|
2017-11-18 22:40:10 +00:00
|
|
|
#include "4coder_generated/app_functions.h"
|
2017-01-23 06:19:43 +00:00
|
|
|
|
|
|
|
extern "C" _GET_VERSION_SIG(get_alpha_4coder_version){
|
2018-05-11 20:46:26 +00:00
|
|
|
return((maj == MAJOR && min == MINOR && patch == PATCH));
|
2017-01-23 06:19:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2018-05-11 20:46:26 +00:00
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|