| 1 | // Copyright (C) 2016 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | #ifndef QEGLFSGLOBAL_H |
| 5 | #define QEGLFSGLOBAL_H |
| 6 | |
| 7 | // |
| 8 | // W A R N I N G |
| 9 | // ------------- |
| 10 | // |
| 11 | // This file is not part of the Qt API. It exists purely as an |
| 12 | // implementation detail. This header file may change from version to |
| 13 | // version without notice, or even be removed. |
| 14 | // |
| 15 | // We mean it. |
| 16 | // |
| 17 | |
| 18 | #include <QtCore/qglobal.h> |
| 19 | |
| 20 | #include <QtGui/private/qt_egl_p.h> |
| 21 | |
| 22 | QT_BEGIN_NAMESPACE |
| 23 | |
| 24 | #ifdef QT_BUILD_EGL_DEVICE_LIB |
| 25 | #define Q_EGLFS_EXPORT Q_DECL_EXPORT |
| 26 | #else |
| 27 | #define Q_EGLFS_EXPORT Q_DECL_IMPORT |
| 28 | #endif |
| 29 | |
| 30 | #undef Status |
| 31 | #undef None |
| 32 | #undef Bool |
| 33 | #undef CursorShape |
| 34 | #undef KeyPress |
| 35 | #undef KeyRelease |
| 36 | #undef FocusIn |
| 37 | #undef FocusOut |
| 38 | #undef FontChange |
| 39 | #undef Expose |
| 40 | #undef Unsorted |
| 41 | |
| 42 | QT_END_NAMESPACE |
| 43 | |
| 44 | #endif |
| 45 | |