You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
359 B
12 lines
359 B
/* Wrap XLIB code in a new file as it defines keywords that conflict with Qt |
|
|
|
SPDX-FileCopyrightText: 2017 David Edmundson <davidedmundson@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later |
|
*/ |
|
#pragma once |
|
|
|
typedef struct _XDisplay Display; |
|
|
|
void sendXTestPressed(Display *display, int button); |
|
void sendXTestReleased(Display *display, int button);
|
|
|