2019-10-05 02:48:05 +00:00
|
|
|
/*
|
|
|
|
4coder_custom.cpp
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
extern "C" b32
|
|
|
|
get_version(i32 maj, i32 min, i32 patch){
|
|
|
|
return(maj == MAJOR && min == MINOR && patch == PATCH);
|
|
|
|
}
|
|
|
|
|
2019-10-10 22:57:02 +00:00
|
|
|
extern "C" Custom_Layer_Init_Type*
|
2019-10-08 01:42:23 +00:00
|
|
|
init_apis(API_VTable_custom *custom_vtable, API_VTable_system *system_vtable){
|
2019-10-05 02:48:05 +00:00
|
|
|
custom_api_read_vtable(custom_vtable);
|
2019-10-08 01:42:23 +00:00
|
|
|
system_api_read_vtable(system_vtable);
|
2019-10-10 22:57:02 +00:00
|
|
|
return(custom_layer_init);
|
2019-10-05 02:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|