Remove not used include/process.h.

This commit is contained in:
Dmitry Timoshkov 2001-09-11 00:33:15 +00:00 committed by Alexandre Julliard
parent 3c0211f969
commit cf07d8bf73
2 changed files with 0 additions and 27 deletions

View File

@ -86,7 +86,6 @@ INSTALLED_INCLUDES = \
oledlg.h \
oleidl.h \
poppack.h \
process.h \
prsht.h \
psapi.h \
pshpack1.h \

View File

@ -1,26 +0,0 @@
/*
* 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 */