Implement Set/GetPrinterData[Ex].
[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 typedef void (*LPBEGINTHREAD)(LPVOID);
11 typedef UINT (WINAPI *LPBEGINTHREADEX)(LPVOID);
12
13 ULONG _beginthread(LPBEGINTHREAD,UINT,LPVOID);
14 void  _endthread(void);
15 ULONG _beginthreadex(LPVOID,UINT,LPBEGINTHREADEX,LPVOID,UINT,LPUINT);
16 void  _endthreadex(UINT);
17
18 #endif  /* _INC_PROCESS */