diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-13 18:08:22 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-13 18:08:22 +0000 |
commit | f0656b7f914db75ba8400cefe22cd70ad0b5620b (patch) | |
tree | e7963ec6afa9da8ace2593cf38638c503ea71328 | |
parent | 9f7f62d3d4f7ed6553d786e5aabf20a8ca32c700 (diff) |
sync for pascal headers
git-svn-id: http://svn.miranda-ng.org/main/trunk@14147 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | include/delphi/m_core.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index 6c5494e6d9..15ccae1e67 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -26,6 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. const
CoreDLL = 'mir_core.dll';
+ AppDLL = 'mir_app.dll';
///////////////////////////////////////////////////////////////////////////////
// command line support
@@ -141,9 +142,9 @@ procedure KillObjectServices(var ptr); stdcall; external CoreDLL name 'KillObjectServices';
function CallContactService(hContact:TMCONTACT;const name:PAnsiChar;wParam:WPARAM;lParam:LPARAM):int_ptr; cdecl;
- external CoreDLL name 'CallContactService';
+ external AppDLL name 'CallContactService';
function CallProtoService(const szModule:PAnsiChar;const szService:PAnsiChar;wParam:WPARAM;lParam:LPARAM):int_ptr; cdecl;
- external CoreDLL name 'CallProtoService';
+ external AppDLL name 'CallProtoService';
///////////////////////////////////////////////////////////////////////////////
@@ -432,7 +433,7 @@ function ProtoBroadcastAck(const szModule:PAnsiChar; hContact:TMCONTACT; type_:i external CoreDLL name 'ProtoBroadcastAck';
function ProtoServiceExists(const szModule, szName:PAnsiChar):int; stdcall;
- external CoreDLL name 'ProtoServiceExists';
+ external AppDLL name 'ProtoServiceExists';
procedure ProtoWindowAdd(pThis:pointer; wnd:HWND); stdcall;
external CoreDLL name 'ProtoWindowAdd';
|