mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
16 lines
310 B
C
16 lines
310 B
C
#ifndef _SWAY_COMMANDS_H
|
|
#define _SWAY_COMMANDS_H
|
|
#include <stdbool.h>
|
|
#include "config.h"
|
|
|
|
struct cmd_handler {
|
|
char *command;
|
|
bool (*handle)(struct sway_config *config, int argc, char **argv);
|
|
};
|
|
|
|
bool handle_command(struct sway_config *config, char *command);
|
|
|
|
void remove_view_from_scratchpad();
|
|
|
|
#endif
|