4coder/4coder_default_bindings.cpp

36 lines
858 B
C++
Raw Normal View History

/*
4coder_default_bidings.cpp - Supplies the default bindings used for default 4coder behavior.
TYPE: 'build-target'
*/
2016-03-21 22:27:27 +00:00
// TOP
#if !defined(FCODER_DEFAULT_BINDINGS)
2016-06-28 22:58:50 +00:00
#define FCODER_DEFAULT_BINDINGS
2016-05-06 16:45:50 +00:00
#include "4coder_default_include.cpp"
// 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)
extern "C" int32_t
get_bindings(void *data, int32_t size){
Bind_Helper context_ = begin_bind_helper(data, size);
Bind_Helper *context = &context_;
set_all_default_hooks(context);
default_keys(context);
2016-05-07 17:25:45 +00:00
int32_t result = end_bind_helper(context);
2016-05-07 17:25:45 +00:00
return(result);
}
2016-06-28 22:58:50 +00:00
#endif //NO_BINDING
#endif //FCODER_DEFAULT_BINDINGS
2016-03-21 22:27:27 +00:00
// BOTTOM