summaryrefslogtreecommitdiffstats
path: root/include/commands.h
blob: 714d2db0b936a9f17909771eef065d2819c2c3e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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