4coder/custom/4coder_default_bindings.cpp

31 lines
805 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"
2019-10-10 22:57:02 +00:00
#include "generated/remapping.h"
// NOTE(allen|a4.0.22): This no longer serves as very good example code.
// Good example code will be coming soon, but in the mean time you can go
// to 4coder_remapping_commands.cpp for examples of what binding code looks like.
2016-03-24 01:05:28 +00:00
#if !defined(NO_BINDING)
2019-10-10 22:57:02 +00:00
void
custom_layer_init(Application_Links *app){
set_all_default_hooks(app);
Thread_Context *tctx = get_thread_context(app);
mapping_init(tctx, &framework_mapping);
setup_default_mapping(&framework_mapping);
}
2016-06-28 22:58:50 +00:00
#endif //NO_BINDING
#endif //FCODER_DEFAULT_BINDINGS
2016-03-21 22:27:27 +00:00
// BOTTOM