diff options
author | Alexey Kulakov <panda75@bk.ru> | 2012-06-29 20:46:12 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2012-06-29 20:46:12 +0000 |
commit | 187798bdd5c9d1c917b6c22ea6c083e73ac36276 (patch) | |
tree | e458e2bd5a0cca5822aa0c72b163b8711335e4ba /plugins/Pascal_Headers/m_core.inc | |
parent | d8f1c974528897e63f0a0b3c873e6e30a319f88f (diff) |
pascal headers updated, testdll added
ShlExt: types fixes, compiling to 64 bit now (not sure what will work btw)
TopToolBar: some load-save things changes
git-svn-id: http://svn.miranda-ng.org/main/trunk@689 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Pascal_Headers/m_core.inc')
-rw-r--r-- | plugins/Pascal_Headers/m_core.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/Pascal_Headers/m_core.inc b/plugins/Pascal_Headers/m_core.inc index 7940868c9b..a46174c193 100644 --- a/plugins/Pascal_Headers/m_core.inc +++ b/plugins/Pascal_Headers/m_core.inc @@ -498,6 +498,9 @@ function forkthread(func:pThreadFunc; stacksize:uint; arg:pointer):uint_ptr; std function forkthreadex(sec:pointer; stacksize:uint; func:pThreadFuncEx; owner:pointer; arg:pointer; thraddr:puint_ptr):uint_ptr; stdcall;
external CoreDLL name 'forkthreadex';
+procedure Thread_SetName(dwThreadID:dword; const szThreadName:pAnsiChar); stdcall;
+ external CoreDLL name 'Thread_SetName';
+
procedure KillObjectThreads(pObject:pointer); stdcall;
external CoreDLL name 'KillObjectThreads';
@@ -545,4 +548,7 @@ function mir_utf8lenW(const src:pWideChar):int; stdcall; ///////////////////////////////////////////////////////////////////////////////
+procedure UnloadCoreModule(); stdcall;
+ external CoreDLL name 'UnloadCoreModule';
+
{$ENDIF}
|