summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-03-09 14:50:35 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-03-09 14:50:35 +0000
commit1c22e5aa2c0bd52eef7b42806c20ff33246f3dc2 (patch)
treeea88d147ef376cf2d2f85bafaed8d1c2c435cd7a
parente674d7f213a219f59cc066ec9268f416180d6031 (diff)
fix for XE2
git-svn-id: http://svn.miranda-ng.org/main/trunk@3940 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--include/delphi/m_core.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc
index 55f77b39be..3461250d88 100644
--- a/include/delphi/m_core.inc
+++ b/include/delphi/m_core.inc
@@ -606,13 +606,13 @@ function mir_utf8checkstring(const astr:PAnsiChar):bool;stdcall;
///////////////////////////////////////////////////////////////////////////////
-procedure mir_subclassWindow(Wnd: HWND; WndProc: WNDPROC); stdcall;
+procedure mir_subclassWindow(Wnd: HWND; WndProc: TWNDPROC); stdcall;
external CoreDLL name 'mir_subclassWindow';
-procedure mir_subclassWindowFull(Wnd: HWND; WndProc, OldWndProc: WNDPROC); stdcall;
+procedure mir_subclassWindowFull(Wnd: HWND; WndProc, OldWndProc: TWNDPROC); stdcall;
external CoreDLL name 'mir_subclassWindowFull';
-function mir_callNextSubclass(Wnd: HWND; WndProc: WNDPROC; uMsg: uint; wParam: WPARAM; lParam: LPARAM ): LRESULT; stdcall;
+function mir_callNextSubclass(Wnd: HWND; WndProc: TWNDPROC; uMsg: uint; wParam: WPARAM; lParam: LPARAM ): LRESULT; stdcall;
external CoreDLL name 'mir_callNextSubclass';
///////////////////////////////////////////////////////////////////////////////