blob: a392e06243f3e23a525a3e55d0c1e1bebbd54ec9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
struct commands;
void register_global_commands(struct commands *commands,
void (*terminate_cb)());
void register_buffer_commands(struct commands *commands);
void register_window_commands(struct commands *commands);
void register_settings_commands(struct commands *commands);
|