1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef _X11_PRELOAD_H |
6 | #define _X11_PRELOAD_H |
7 | |
8 | #ifdef __cplusplus |
9 | extern "C"{ |
10 | #endif |
11 | |
12 | #define SIMPLE_X11_HOOK |
13 | |
14 | #ifndef SIMPLE_X11_HOOK |
15 | int start_record_x11(const char* displayName, const char* filter); |
16 | void stop_record_x11(void); |
17 | #endif |
18 | |
19 | #ifdef __cplusplus |
20 | } |
21 | #endif |
22 | |
23 | #endif // #ifndef _X11_PRELOAD_H |
24 |