mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-01-31 01:13:04 +09:00
13 lines
211 B
C++
13 lines
211 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace gsr {
|
|
struct ActiveKwinWindow {
|
|
std::string title = "Game";
|
|
};
|
|
|
|
void start_kwin_helper_thread();
|
|
std::string get_current_kwin_window_title();
|
|
}
|