mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-03-31 09:17:04 +09:00
16 lines
311 B
C++
16 lines
311 B
C++
#pragma once
|
|
|
|
#include <sys/types.h>
|
|
|
|
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(pid_t &gsr_pid, GsrMode &mode);
|
|
} |