4 * Copyright 1996 Alexandre Julliard
10 typedef void (*LPBEGINTHREAD
)(LPVOID
);
11 typedef UINT (WINAPI
*LPBEGINTHREADEX
)(LPVOID
);
13 ULONG
_beginthread(LPBEGINTHREAD
,UINT
,LPVOID
);
14 void _endthread(void);
15 ULONG
_beginthreadex(LPVOID
,UINT
,LPBEGINTHREADEX
,LPVOID
,UINT
,LPUINT
);
16 void _endthreadex(UINT
);
18 #endif /* _INC_PROCESS */