Fixing init result issue.
1 //------------------------------------------------------------------------------
2 #ifndef THREAD_H_INCLUDED
3 #define THREAD_H_INCLUDED
4 //------------------------------------------------------------------------------
6 //------------------------------------------------------------------------------
14 Thread(const Thread& other) {}
15 Thread& operator=(const Thread& other) { *this; }
19 virtual void Interrupt() = 0;
23 virtual void Run() = 0;
26 static DWORD WINAPI ThreadProc(LPVOID lpParam);
32 //------------------------------------------------------------------------------
34 //------------------------------------------------------------------------------