33 lines
786 B
C++
33 lines
786 B
C++
/*
|
|
4coder_default_bidings.cpp - Supplies the default bindings used for default 4coder behavior.
|
|
*/
|
|
|
|
// TOP
|
|
|
|
#if !defined(FCODER_DEFAULT_BINDINGS_CPP)
|
|
#define FCODER_DEFAULT_BINDINGS_CPP
|
|
|
|
#include "4coder_default_include.cpp"
|
|
|
|
// NOTE(allen): Users can declare their own managed IDs here.
|
|
|
|
#include "generated/managed_id_metadata.cpp"
|
|
|
|
void
|
|
custom_layer_init(Application_Links *app){
|
|
Thread_Context *tctx = get_thread_context(app);
|
|
|
|
// NOTE(allen): setup for default framework
|
|
default_framework_init(app);
|
|
|
|
// 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);
|
|
}
|
|
|
|
#endif //FCODER_DEFAULT_BINDINGS
|
|
|
|
// BOTTOM
|
|
|