Commit 514ae382 authored by Peter Hunnisett's avatar Peter Hunnisett Committed by Alexandre Julliard

Added crt/msvcrt thread prototypes.

parent 3732965c
......@@ -161,4 +161,11 @@ static inline PDB WINE_UNUSED *PROCESS_Current(void)
return &current_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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment