⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmthread.h

📁 Soul的源代码,类似于劲舞团之类的游戏
💻 H
字号:
#ifndef  __MATRIX_THREAD_H
#define  __MATRIX_THREAD_H

namespace MatrixCore
{
	namespace System
	{
		class CMThread //: public CMObject
		{
		public:
					CMThread();
			virtual ~CMThread();

			virtual	void		run(){}
			
			void InitWork(LPTHREAD_START_ROUTINE  StartRoutine);
					void		begin(LPVOID parameter = NULL);
			
			LPTHREAD_START_ROUTINE  m_StartRoutine;

		protected:
					HANDLE		handleThread;

		private:
			static	DWORD	WINAPI	handleRunner( LPVOID parameter );

					bool		isStarted;
					DWORD		thredID;
		};
	}
}

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -