thread1 간단한 CWinThread 사용법과 MSDN 링크 Class Wizard로 CWinThread를 상속받은 MyThread를 만든다. 그리고 dlg같은 스레드를 쓰려는 클래스의 맴버변수로 CWinThread* m_pWinThread; 를 만든다. 다음은 스레드 생성 m_pWinThread = AfxBeginThread(RUNTIME_CLASS(MyThread)); 다음은 윈스레드의 메세지 핸들링 방법이다. MyThread가 받을 메세지로 TM_MYMSG라는 것이 Resource.h에 있다고 치자. 없으면 쓰자 #define TM_MYMSG 700 그리고 MyThread.h에 void MyMsg();를 하고 BEGIN_MESSAGE_MAP(MyThread, CWinThread) //{{AFX_MSG_MAP(TestWinThread) // NOTE - the.. 2012. 10. 31. 이전 1 다음 반응형