mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
18 lines
397 B
C
18 lines
397 B
C
/*
|
|
* Process definitions
|
|
*
|
|
* Copyright 1996 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef _INC_PROCESS
|
|
#define _INC_PROCESS
|
|
|
|
typedef void (*LPBEGINTHREAD)(LPVOID);
|
|
typedef UINT (WINAPI *LPBEGINTHREADEX)(LPVOID);
|
|
|
|
ULONG _beginthread(LPBEGINTHREAD,UINT,LPVOID);
|
|
void _endthread(void);
|
|
ULONG _beginthreadex(LPVOID,UINT,LPBEGINTHREADEX,LPVOID,UINT,LPUINT);
|
|
void _endthreadex(UINT);
|
|
|
|
#endif /* _INC_PROCESS */
|