From 514ae382b10ea9a4671258810e58f670782b9306 Mon Sep 17 00:00:00 2001 From: Peter Hunnisett Date: Thu, 19 Oct 2000 22:38:20 +0000 Subject: [PATCH] Added crt/msvcrt thread prototypes. --- include/process.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/process.h b/include/process.h index efd1043d972..dfeb16540df 100644 --- a/include/process.h +++ b/include/process.h @@ -161,4 +161,11 @@ static inline PDB WINE_UNUSED *PROCESS_Current(void) return ¤t_process; } +/* definitions contained in Windows process.h file */ +/* FIXME: all the stuff above should be moved somewhere else */ +ULONG _beginthread(VOID (*)(LPVOID),UINT,LPVOID); +void _endthread(void); +ULONG _beginthreadex(LPVOID,UINT,UINT (WINAPI*) (LPVOID),LPVOID,UINT,LPUINT); +void _endthreadex(UINT); + #endif /* __WINE_PROCESS_H */ -- 2.11.4.GIT