Click here to Skip to main content
15,898,222 members
Articles / Desktop Programming / MFC

Threads And Timers

Rate me:
Please Sign up or sign in to vote.
4.60/5 (11 votes)
26 Jan 20041 min read 162.9K   4.2K   32  
Adding a WM_TIMER message to CWinThreads.
/************************************************************************
 Author: David A. Jones
 Date:	January 25, 2004

 Synopsis:

 An example of how to use the CWinTimerThread

 ************************************************************************/
#include "WinTimerThread.h"

#if !defined(MYTHREAD_H)
#define MYTHREAD_H
#pragma once

class CMyThread : public CWinTimerThread
{
	public:
		DECLARE_DYNCREATE(CMyThread)
		//
		CMyThread();
		~CMyThread();

		virtual BOOL InitInstance();
		virtual int ExitInstance();

		void SetLogWindow(CWnd* pWnd);

	protected:
		// 
		CWnd* m_pLogWnd;
		//
		void LogMessage(CString& logmsg);
		void OnTimer(WPARAM idEvent, LPARAM dwTime);
		//
		DECLARE_MESSAGE_MAP()};

#endif // MYTHREAD_H

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions