diff options
author | George Hazan <george.hazan@gmail.com> | 2015-11-12 08:24:24 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-11-12 08:24:24 +0000 |
commit | b4a3c65ee5bd561e915f05c9514f78c51b936b0c (patch) | |
tree | ea0392faa088667477b71926a292fde0cf785539 /include | |
parent | 3e3b1f6a969a4f7087da2afea2870c580146402a (diff) |
fix for a function definition
git-svn-id: http://svn.miranda-ng.org/main/trunk@15714 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_core.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index 5fdd9756d8..c13dfe190d 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -554,13 +554,13 @@ procedure Thread_Wait(); stdcall; external CoreDLL name 'Thread_Wait';
function mir_forkthread(aFunc:pThreadFunc; arg:pointer):THANDLE; stdcall;
- external CoreDLL name 'mir_forkthreadex';
+ external CoreDLL;
function mir_forkthreadex(aFunc:pThreadFuncEx; arg:pointer; pThreadID:puint_ptr):THANDLE; stdcall;
- external CoreDLL name 'mir_forkthreadex';
+ external CoreDLL;
function mir_forkthreadowner(aFunc:pThreadFuncOwner; owner:pointer; arg:pointer; pThreadID:puint_ptr):THANDLE; stdcall;
- external CoreDLL name 'mir_forkthreadex';
+ external CoreDLL;
procedure Thread_SetName(const szThreadName:PAnsiChar); stdcall;
external CoreDLL name 'Thread_SetName';
|