mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-28 22:23:42 +01:00
14 lines
277 B
C
14 lines
277 B
C
|
#ifndef _SWAY_COMMANDS_H
|
||
|
#define _SWAY_COMMANDS_H
|
||
|
#include <stdbool.h>
|
||
|
#include "config.h"
|
||
|
|
||
|
struct cmd_handler {
|
||
|
char *command;
|
||
|
int (*handle)(struct sway_config *config, int argc, char **argv);
|
||
|
};
|
||
|
|
||
|
int handle_command(struct sway_config *config, char *command);
|
||
|
|
||
|
#endif
|