diff options
Diffstat (limited to 'include/Process.hpp')
-rw-r--r-- | include/Process.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/Process.hpp b/include/Process.hpp new file mode 100644 index 0000000..a41b9a0 --- /dev/null +++ b/include/Process.hpp @@ -0,0 +1,14 @@ +#pragma once + +namespace gsr { + enum class GsrMode { + Replay, + Record, + Stream, + Unknown + }; + + // Arguments ending with NULL + bool exec_program_daemonized(const char **args); + bool is_gpu_screen_recorder_running(int &gsr_pid, GsrMode &mode); +}
\ No newline at end of file |