Click here to Skip to main content
15,886,872 members
Articles / Programming Languages / Objective C

CMultimediaTimer - A Periodic Timer Class

Rate me:
Please Sign up or sign in to vote.
4.13/5 (7 votes)
27 Mar 20021 min read 71.5K   1.7K   33  
CMultimediaTimer implements a periodic timer using the Windows Multimedia Timer API
// stdafx.h : include file for standard system include files,
//  or project specific include files that are used frequently, but
//      are changed infrequently
//

#if !defined(AFX_STDAFX_H__C3639142_414F_11D6_826D_00D0B78FBB37__INCLUDED_)
#define AFX_STDAFX_H__C3639142_414F_11D6_826D_00D0B78FBB37__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define VC_EXTRALEAN		// Exclude rarely-used stuff from Windows headers

#include <afxwin.h>         // MFC core and standard components
#include <afxext.h>         // MFC extensions
#include <afxdtctl.h>		// MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>			// MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT


//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_STDAFX_H__C3639142_414F_11D6_826D_00D0B78FBB37__INCLUDED_)

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.


Written By
Web Developer
Australia Australia
John Curtis runs Fatlab Software Pty. Ltd. which provides software services to companies in Australia and is currently developing a range of productivity apps.
He has 20+ years experience writing C++ software and can write Java, C#, Javascript when needed!
Specialities include IOT device code, Realtime control, Embedded Linux, Bare bones....

Loves playing with Arduino and Raspberry Pi based solutions for small scale problems.

Comments and Discussions