mirror of
https://github.com/NickHu/sway
synced 2025-01-18 22:27:25 +01:00
13 lines
226 B
C
13 lines
226 B
C
|
#ifndef _SWAY_LAUNCHER_H
|
||
|
#define _SWAY_LAUNCHER_H
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
struct sway_workspace *root_workspace_for_pid(pid_t pid);
|
||
|
|
||
|
void root_record_workspace_pid(pid_t pid);
|
||
|
|
||
|
void root_remove_workspace_pid(pid_t pid);
|
||
|
|
||
|
#endif
|