mirror of
https://github.com/swaywm/sway.git
synced 2025-11-02 09:01:40 -05:00
Move headers to include/
This commit is contained in:
parent
360b3d67b0
commit
7f8ebb7d0d
12 changed files with 1 additions and 1 deletions
13
include/commands.h
Normal file
13
include/commands.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#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);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue