Added crt/msvcrt thread prototypes.

This commit is contained in:
Peter Hunnisett 2000-10-19 22:38:20 +00:00 committed by Alexandre Julliard
parent 3732965c15
commit 514ae382b1
1 changed files with 7 additions and 0 deletions

View File

@ -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 */