2017-01-23 06:19:43 +00:00
|
|
|
|
|
|
|
#ifndef FCODER_CUSTOM_H
|
|
|
|
#define FCODER_CUSTOM_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "version.h"
|
2017-11-18 22:40:10 +00:00
|
|
|
#include "4coder_generated/keycodes.h"
|
|
|
|
#include "4coder_generated/style.h"
|
2017-01-23 06:19:43 +00:00
|
|
|
// TODO(allen): I don't like having to pull in the types from my standalone libraries to define the API.
|
|
|
|
// What to do??? Hmmm....
|
|
|
|
#include "4coder_lib/4coder_string.h"
|
2017-11-21 00:35:35 +00:00
|
|
|
#include "4coder_lib/4cpp_lexer_types.h"
|
2017-01-23 06:19:43 +00:00
|
|
|
#include "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){
|
|
|
|
int32_t result = (maj == MAJOR && min == MINOR && patch == PATCH);
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|