Moved DCX_* constants to winuser.h.
[wine/multimedia.git] / include / process.h
blob0255ad9b749ca9a1c498fbbf76676de871382c27
1 /*
2 * Process definitions
4 * Copyright 1996 Alexandre Julliard
5 */
7 #ifndef _INC_PROCESS
8 #define _INC_PROCESS
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
14 typedef void (*LPBEGINTHREAD)(LPVOID);
15 typedef UINT WINAPI (*LPBEGINTHREADEX)(LPVOID);
17 ULONG _beginthread(LPBEGINTHREAD,UINT,LPVOID);
18 void _endthread(void);
19 ULONG _beginthreadex(LPVOID,UINT,LPBEGINTHREADEX,LPVOID,UINT,LPUINT);
20 void _endthreadex(UINT);
22 #ifdef __cplusplus
24 #endif
26 #endif /* _INC_PROCESS */