diff options
Diffstat (limited to 'lib/system')
-rwxr-xr-x | lib/system/systhread.nim | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/system/systhread.nim b/lib/system/systhread.nim index 70447f288..a124fa92f 100755 --- a/lib/system/systhread.nim +++ b/lib/system/systhread.nim @@ -88,19 +88,19 @@ type TLock* = TSysLock TThreadFunc* = proc (closure: pointer) {.cdecl.} -DWORD WINAPI SuspendThread( - __in HANDLE hThread -); -DWORD WINAPI ResumeThread( - __in HANDLE hThread -); -DWORD WINAPI ThreadProc( - __in LPVOID lpParameter -); +#DWORD WINAPI SuspendThread( +# __in HANDLE hThread +#); +#DWORD WINAPI ResumeThread( +# __in HANDLE hThread +#); +#DWORD WINAPI ThreadProc( +# __in LPVOID lpParameter +#); proc createThread*(t: var TThread, fn: TThreadFunc, closure: pointer) = when defined(windows): - + nil else: nil #pthread_create( |