mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-05-05 06:20:44 +09:00
Start/stop recording if not running/already running
This commit is contained in:
14
include/Process.hpp
Normal file
14
include/Process.hpp
Normal file
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user