Commit cf07d8bf authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Remove not used include/process.h.

parent 3c0211f9
......@@ -86,7 +86,6 @@ INSTALLED_INCLUDES = \
oledlg.h \
oleidl.h \
poppack.h \
process.h \
prsht.h \
psapi.h \
pshpack1.h \
......
/*
* Process definitions
*
* Copyright 1996 Alexandre Julliard
*/
#ifndef _INC_PROCESS
#define _INC_PROCESS
#ifdef __cplusplus
extern "C" {
#endif
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);
#ifdef __cplusplus
}
#endif
#endif /* _INC_PROCESS */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment