master
Geoffrey Merck 4 years ago
parent 49fc77e465
commit 016ac2b34f

@ -26,6 +26,11 @@ CThread::CThread()
}
CThread::~CThread()
{
}
void CThread::Create()
{
//Actually does nothing, might be removed in the future

@ -27,13 +27,14 @@
class CThread {
public:
CThread();
virtual ~CThread();
void Create();
void Run();
void Wait();
void Sleep(unsigned long milli);
protected:
virtual void* Entry();
virtual void* Entry() = 0;
private:
static void EntryRunner(CThread * thread);

Loading…
Cancel
Save

Powered by TurnKey Linux.