blob: 324842d227d05fd15764883c2712381347352cec (
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));
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);
|