More style changes

This commit is contained in:
dec05eba
2024-07-31 21:01:31 +02:00
parent 497217a3e0
commit 8a82fa688b
15 changed files with 1032 additions and 184 deletions

View File

@@ -1,5 +1,7 @@
#pragma once
#include <sys/types.h>
namespace gsr {
enum class GsrMode {
Replay,
@@ -10,5 +12,5 @@ namespace gsr {
// Arguments ending with NULL
bool exec_program_daemonized(const char **args);
bool is_gpu_screen_recorder_running(int &gsr_pid, GsrMode &mode);
bool is_gpu_screen_recorder_running(pid_t &gsr_pid, GsrMode &mode);
}