Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qhooks_p.h
Go to the documentation of this file.
1// Copyright (C) 2014 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Volker Krause <volker.krause@kdab.com>
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4
5#ifndef QHOOKS_H
6#define QHOOKS_H
7
8//
9// W A R N I N G
10// -------------
11//
12// This file is not part of the Qt API. It exists purely as an
13// implementation detail. This header file may change from version to
14// version without notice, or even be removed.
15//
16// We mean it.
17//
18
19#include <QtCore/private/qglobal_p.h>
20
21QT_BEGIN_NAMESPACE
22
23class QObject;
24
25namespace QHooks {
26
37
38typedef void(*AddQObjectCallback)(QObject*);
39typedef void(*RemoveQObjectCallback)(QObject*);
40typedef void(*StartupCallback)();
41
42}
43
44extern quintptr Q_CORE_EXPORT qtHookData[];
45
46QT_END_NAMESPACE
47
48#endif
void(* AddQObjectCallback)(QObject *)
Definition qhooks_p.h:38
void(* StartupCallback)()
Definition qhooks_p.h:40
void(* RemoveQObjectCallback)(QObject *)
Definition qhooks_p.h:39
HookIndex
Definition qhooks_p.h:27
@ Startup
Definition qhooks_p.h:33
@ TypeInformationVersion
Definition qhooks_p.h:34
@ LastHookIndex
Definition qhooks_p.h:35
@ AddQObject
Definition qhooks_p.h:31
@ QtVersion
Definition qhooks_p.h:30
@ HookDataSize
Definition qhooks_p.h:29
@ HookDataVersion
Definition qhooks_p.h:28
@ RemoveQObject
Definition qhooks_p.h:32