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