Search

'전체 글'에 해당되는 글 113건

  1. 2013.05.10 Class 내부 Thread basic... 1

Class 내부 Thread basic...

Program C/C++ 2013. 5. 10. 16:09 Posted by HisPark

class MyClass
{
   
static DWORD WINAPI StaticThreadStart(void* Param)
   
{
       
MyClass* This = (MyClass*) Param;
       
return This->ThreadStart();
   
}

    DWORD
ThreadStart(void)
   
{
       
// Do stuff
   
}

   
void startMyThread()
   
{
       DWORD
ThreadID;
      
CreateThread(NULL, 0, StaticThreadStart, (void*) this, 0, &ThreadID);
   
}
};

'Program C/C++' 카테고리의 다른 글

typedef...  (0) 2011.09.26
c 표준 함수들  (0) 2011.06.24
문자열 타입 변환 | C & C++  (0) 2010.10.13
C++의 다양한 string 타입 | C & C++  (0) 2010.01.30
About String  (0) 2005.08.05