Click here to Skip to main content
15,886,788 members
Articles / Desktop Programming / WTL

The Spring Computing Windows Controls

Rate me:
Please Sign up or sign in to vote.
4.27/5 (4 votes)
27 Sep 20014 min read 85.5K   2K   32  
A set of Win32 Windows controls.
// stdafx.h : include file for standard system include files,
//  or project specific include files that are used frequently, but
//      are changed infrequently
//

#ifndef AFX_STDAFX_H__
#define AFX_STDAFX_H__

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

// Windows 95						WINVER=0x0400	and _WIN32_WINDOWS=0x0400
// Windows 98						WINVER=0x0400	and _WIN32_WINDOWS=0x0410
// Windows Me						WINVER=0x0400	and _WIN32_WINDOWS=0x0490

// Windows NT 4.0					WINVER=0x0400	and _WIN32_WINNT=0x0400
// Windows 2000						WINVER=0x0500	and _WIN32_WINNT=0x0500
// Whistler							WINVER=0x0501	and _WIN32_WINNT=0x0501 

// Target Windows NT 4.0 and Windows 98

#define WINVER			0x0400
#define _WIN32_WINDOWS	0x0400
#define _WIN32_WINNT	0x0400

// Internet Explorer 3.0, 3.01, 3.02	_WIN32_IE=0x0300 
// Internet Explorer 4.0				_WIN32_IE=0x0400 
// Internet Explorer 4.01				_WIN32_IE=0x0401 
// Internet Explorer 5.0, 5.0a, 5.0b	_WIN32_IE=0x0500 
// Internet Explorer 5.01, 5.5			_WIN32_IE=0x0501 

#define _WIN32_IE		0x0400

#define RICHEDIT_VER	0x0100

#include <atlbase.h>

// WTL Helpers

#include <atlapp.h>

// You can create a class derived from CAppModule and use it if you
// want to override something but do not change the name of _Module

extern CAppModule _Module;

#include <atlwin.h>

// WTL Helpers

#include <atlframe.h>

#include <atlmisc.h>

#include <atldlgs.h>
#include <atlddx.h>

#include <atlctrls.h>
#include <atlctrlw.h>
#include <atlctrlx.h>

#include <atlcrack.h>

// Additionnal Headers

#include "winctrls.h"

#endif // AFX_STDAFX_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
France France
Coming soon...

Comments and Discussions