Commit be98c7b1 authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

Use extern "C" for Winelib C++ apps.

parent a247086c
......@@ -7,6 +7,10 @@
#ifndef _INC_PROCESS
#define _INC_PROCESS
#ifdef __cplusplus
extern "C" {
#endif
typedef void (*LPBEGINTHREAD)(LPVOID);
typedef UINT WINAPI (*LPBEGINTHREADEX)(LPVOID);
......@@ -15,4 +19,8 @@ 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