summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin+git@gmail.com>2016-06-11 09:20:09 -0500
committerLibravatar Zandr Martin <zandrmartin+git@gmail.com>2016-06-11 09:20:09 -0500
commitbeaa03344eda931274b75275bfc2d622e6875956 (patch)
tree166d43eb515eeb16e6fe369e7193ba268fa94406 /include
parentsemi-working (only non-client/server wayland apps) (diff)
downloadsway-beaa03344eda931274b75275bfc2d622e6875956.tar.gz
sway-beaa03344eda931274b75275bfc2d622e6875956.tar.zst
sway-beaa03344eda931274b75275bfc2d622e6875956.zip
clean up pid/workspace stuff
Diffstat (limited to 'include')
-rw-r--r--include/workspace.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/workspace.h b/include/workspace.h
index 6911e3d4..c268fafa 100644
--- a/include/workspace.h
+++ b/include/workspace.h
@@ -2,6 +2,7 @@
2#define _SWAY_WORKSPACE_H 2#define _SWAY_WORKSPACE_H
3 3
4#include <wlc/wlc.h> 4#include <wlc/wlc.h>
5#include <unistd.h>
5#include "list.h" 6#include "list.h"
6#include "layout.h" 7#include "layout.h"
7 8
@@ -16,5 +17,6 @@ swayc_t *workspace_output_next();
16swayc_t *workspace_next(); 17swayc_t *workspace_next();
17swayc_t *workspace_output_prev(); 18swayc_t *workspace_output_prev();
18swayc_t *workspace_prev(); 19swayc_t *workspace_prev();
20swayc_t *workspace_for_pid(pid_t pid);
19 21
20#endif 22#endif