-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdynamic_calls.json
39 lines (36 loc) · 1.39 KB
/
dynamic_calls.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"typedef": [
"typedef void (*timer_callback) (int, void*)",
"typedef void (*gui_callback) (unsigned, void*)",
"typedef struct { int a, b, c; float x, y, z; } TestData"
],
"initialization": [
],
"clientside": [
"GUI::find",
"GUI::window",
"GUI::widget",
"GUI::button",
"GUI::label",
"GUI::widget_set_pos",
"GUI::widget_callback"
],
"serverside": [
],
"Timer::stop": "void sys_timer_stop (int)",
"Timer::periodic": "int sys_timer_periodic (float, float, timer_callback, void*, size_t)",
"Debug::breakpoint": "void sys_breakpoint (uint16_t, const char*)",
"Debug::is_debug": "int sys_is_debug ()",
"GUI::find": "unsigned sys_gui_find (const char *)",
"GUI::window": "unsigned sys_gui_window (const char *)",
"GUI::widget": "unsigned sys_gui_widget (unsigned)",
"GUI::button": "unsigned sys_gui_button (unsigned, const char *)",
"GUI::label": "unsigned sys_gui_label (unsigned, const char *)",
"GUI::widget_set_pos": "void sys_gui_widget_set_pos (unsigned, int, int)",
"GUI::widget_callback": "void sys_gui_widget_callback (unsigned, gui_callback, void *, size_t)",
"empty": "void sys_empty ()",
"test_string": "void sys_test_strings (const char*, const char*, size_t)",
"test_3i_3f": "void sys_test_3i3f (int, int, int, float, float, float)",
"test_array": "void sys_test_array (const TestData*)",
"test_data": "void sys_test_data (TestData*, int, TestData*)"
}