diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-03 12:56:10 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-03 12:56:10 +0000 |
commit | 2dcb2ff9a79ebce4e3fae19a851f83e3c7d41474 (patch) | |
tree | 175ebcf8ca972b02874d19d734481024965ff264 /include/delphi | |
parent | 1492cd4767bc9c7748455639a8eb4429a2771c34 (diff) |
forgotten another function: mir_callNextSubclass
git-svn-id: http://svn.miranda-ng.org/main/trunk@3870 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_core.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index 595e02e16c..d52f5425bb 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -578,6 +578,9 @@ function mir_utf8checkstring(const astr:PAnsiChar):bool;stdcall; procedure mir_subclassWindow(Wnd: HWND; WndProc: WNDPROC); stdcall;
external CoreDLL name 'mir_subclassWindow';
+function mir_callNextSubclass(Wnd: HWND; WndProc: WNDPROC; uMsg: uint; wParam: WPARAM; lParam: LPARAM ): LRESULT; stdcall;
+ external CoreDLL name 'mir_callNextSubclass';
+
///////////////////////////////////////////////////////////////////////////////
procedure UnloadCoreModule(); stdcall;
|