您的位置:首页 > 编程语言 > PHP开发

Jrtplib学习分析与记录3.1

2010-12-30 17:44 363 查看
Jthread.h

#if (defined(WIN32) || defined(_WIN32_WCE))
#ifdef _WIN32_WCE
DWORD threadid;
static DWORD WINAPI TheThread(void *param);
#else
static UINT __stdcall TheThread(void *param);
UINT threadid;
#endif // _WIN32_WCE
HANDLE threadhandle;
#else // pthread type threads
static void *TheThread(void *param);

pthread_t threadid;
#endif // WIN32
void *retval;
bool running;

JMutex runningmutex;
JMutex continuemutex,continuemutex2;
bool mutexinit;
};

#endif // JTHREAD_H
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: