4coder/4coder_API/custom.h

28 lines
472 B
C

/*
custom.h
*/
// TOP
#ifndef FCODER_CUSTOM_H
#define FCODER_CUSTOM_H
#include <stdint.h>
#include "version.h"
#include "4coder_lib/4coder_string.h"
#include "4coder_lib/4cpp_lexer_types.h"
#include "4coder_generated/keycodes.h"
#include "4coder_generated/style.h"
#include "types.h"
#include "4coder_generated/app_functions.h"
extern "C" _GET_VERSION_SIG(get_alpha_4coder_version){
return((maj == MAJOR && min == MINOR && patch == PATCH));
}
#endif
// BOTTOM