Commit 7cc8abc1 authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

Use intermediate typedef.

parent 46b0072c
......@@ -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 */
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