RBBS_FIXEDSIZE should not affect _AdjustBands (found by Mike McCormack
[wine] / include / process.h
1 /*
2  * Process definitions
3  *
4  * Copyright 1996 Alexandre Julliard
5  */
6
7 #ifndef _INC_PROCESS
8 #define _INC_PROCESS
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
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 void  _endthreadex(UINT);
21
22 #ifdef __cplusplus
23 }
24 #endif
25
26 #endif  /* _INC_PROCESS */