Remove win*Message() exported functions
They are nothing more than wrappers around the Win32 API, and marked for removable in Qt 5. Change-Id: Iaf34d463488feb7840185c7b46f65a031232e34a Reviewed-by: João Abecasis <joao.abecasis@nokia.com>bb10
parent
f2edb41c38
commit
46b2e5f37d
|
|
@ -332,26 +332,6 @@ void QEventDispatcherWin32Private::activateEventNotifier(QWinEventNotifier * wen
|
|||
QCoreApplication::sendEvent(wen, &event);
|
||||
}
|
||||
|
||||
// ### Qt 5: remove
|
||||
Q_CORE_EXPORT bool winPeekMessage(MSG* msg, HWND hWnd, UINT wMsgFilterMin,
|
||||
UINT wMsgFilterMax, UINT wRemoveMsg)
|
||||
{
|
||||
return PeekMessage(msg, hWnd, wMsgFilterMin, wMsgFilterMax, wRemoveMsg);
|
||||
}
|
||||
|
||||
// ### Qt 5: remove
|
||||
Q_CORE_EXPORT bool winPostMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
return PostMessage(hWnd, msg, wParam, lParam);
|
||||
}
|
||||
|
||||
// ### Qt 5: remove
|
||||
Q_CORE_EXPORT bool winGetMessage(MSG* msg, HWND hWnd, UINT wMsgFilterMin,
|
||||
UINT wMsgFilterMax)
|
||||
{
|
||||
return GetMessage(msg, hWnd, wMsgFilterMin, wMsgFilterMax);
|
||||
}
|
||||
|
||||
// This function is called by a workerthread
|
||||
void WINAPI QT_WIN_CALLBACK qt_fast_timer_proc(uint timerId, uint /*reserved*/, DWORD_PTR user, DWORD_PTR /*reserved*/, DWORD_PTR /*reserved*/)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue