semi-working (only non-client/server wayland apps)

This commit is contained in:
Zandr Martin 2016-06-10 06:08:59 -05:00
parent 0f1859ed25
commit 03d79b41c7
No known key found for this signature in database
GPG key ID: AA2BB8EF77F7BBDC
3 changed files with 79 additions and 11 deletions

View file

@ -2,6 +2,7 @@
#define _SWAY_UTIL_H
#include <stdint.h>
#include <unistd.h>
#include <wlc/wlc.h>
#include <xkbcommon/xkbcommon.h>
@ -36,4 +37,11 @@ const char *get_modifier_name_by_mask(uint32_t modifier);
*/
int get_modifier_names(const char **names, uint32_t modifier_masks);
/**
* Get the pid of a parent process given the pid of a child process.
*
* Returns the parent pid or NULL if the parent pid cannot be determined.
*/
pid_t get_parent_pid(pid_t pid);
#endif