mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-03-31 09:17:04 +09:00
19 lines
446 B
C++
19 lines
446 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);
|
|
// Arguments ending with NULL
|
|
pid_t exec_program(const char **args);
|
|
// |output_buffer| should be at least PATH_MAX in size
|
|
bool read_cmdline_arg0(const char *filepath, char *output_buffer);
|
|
} |