36 lines
858 B
C++
36 lines
858 B
C++
/*
|
|
4coder_default_bidings.cpp - Supplies the default bindings used for default 4coder behavior.
|
|
|
|
TYPE: 'build-target'
|
|
*/
|
|
|
|
// TOP
|
|
|
|
#if !defined(FCODER_DEFAULT_BINDINGS)
|
|
#define FCODER_DEFAULT_BINDINGS
|
|
|
|
#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.
|
|
|
|
#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);
|
|
|
|
int32_t result = end_bind_helper(context);
|
|
return(result);
|
|
}
|
|
#endif //NO_BINDING
|
|
|
|
#endif //FCODER_DEFAULT_BINDINGS
|
|
|
|
// BOTTOM
|
|
|