4coder/custom/4coder_default_bindings.cpp

35 lines
817 B
C++
Raw Normal View History

/*
4coder_default_bidings.cpp - Supplies the default bindings used for default 4coder behavior.
*/
2016-03-21 22:27:27 +00:00
// TOP
#if !defined(FCODER_DEFAULT_BINDINGS_CPP)
#define FCODER_DEFAULT_BINDINGS_CPP
2016-06-28 22:58:50 +00:00
2016-05-06 16:45:50 +00:00
#include "4coder_default_include.cpp"
// NOTE(allen): Users can declare their own managed IDs here.
#if !defined(META_PASS)
#include "generated/managed_id_metadata.cpp"
#endif
2019-10-14 22:57:47 +00:00
2019-10-10 22:57:02 +00:00
void
custom_layer_init(Application_Links *app){
Thread_Context *tctx = get_thread_context(app);
2019-12-03 19:35:41 +00:00
// NOTE(allen): setup for default framework
default_framework_init(app);
2019-12-03 19:35:41 +00:00
// NOTE(allen): default hooks and command maps
set_all_default_hooks(app);
mapping_init(tctx, &framework_mapping);
setup_default_mapping(&framework_mapping, mapid_global, mapid_file, mapid_code);
}
2019-10-14 22:57:47 +00:00
2016-06-28 22:58:50 +00:00
#endif //FCODER_DEFAULT_BINDINGS
2016-03-21 22:27:27 +00:00
// BOTTOM