process.h 466 Bytes
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4 5 6
/*
 * Process definitions
 *
 * Copyright 1996 Alexandre Julliard
 */

7 8
#ifndef _INC_PROCESS
#define _INC_PROCESS
9

10 11 12 13
#ifdef __cplusplus
extern "C" {
#endif

14
typedef void (*LPBEGINTHREAD)(LPVOID);
15
typedef UINT WINAPI (*LPBEGINTHREADEX)(LPVOID);
16 17

ULONG _beginthread(LPBEGINTHREAD,UINT,LPVOID);
18
void  _endthread(void);
19
ULONG _beginthreadex(LPVOID,UINT,LPBEGINTHREADEX,LPVOID,UINT,LPUINT);
20 21
void  _endthreadex(UINT);

22 23 24 25
#ifdef __cplusplus
}
#endif

26
#endif  /* _INC_PROCESS */