Use intermediate typedef.

This commit is contained in:
Patrik Stridvall 2000-10-22 23:54:32 +00:00 committed by Alexandre Julliard
parent 46b0072cde
commit 7cc8abc10d
1 changed files with 6 additions and 2 deletions

View File

@ -163,9 +163,13 @@ static inline PDB WINE_UNUSED *PROCESS_Current(void)
/* definitions contained in Windows process.h file */
/* FIXME: all the stuff above should be moved somewhere else */
ULONG _beginthread(VOID (*)(LPVOID),UINT,LPVOID);
typedef void (*LPBEGINTHREAD)(LPVOID);
typedef UINT (WINAPI *LPBEGINTHREADEX)(LPVOID);
ULONG _beginthread(LPBEGINTHREAD,UINT,LPVOID);
void _endthread(void);
ULONG _beginthreadex(LPVOID,UINT,UINT (WINAPI*) (LPVOID),LPVOID,UINT,LPUINT);
ULONG _beginthreadex(LPVOID,UINT,LPBEGINTHREADEX,LPVOID,UINT,LPUINT);
void _endthreadex(UINT);
#endif /* __WINE_PROCESS_H */