Click here to Skip to main content
15,895,142 members
Articles / Desktop Programming / WTL

WTL Wizard for Visual Studio .NET

Rate me:
Please Sign up or sign in to vote.
2.88/5 (4 votes)
17 Feb 2002 117K   1.2K   24  
An App-Wizard which creates template WTL apps.
// stdafx.h : include file for standard system include files,
//  or project specific include files that are used frequently, but
//      are changed infrequently
//

#if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
#define $$FILE_NAME_SYMBOL$$_INCLUDED_

// Change these values to use different versions
#define WINVER		0x0400
#define _WIN32_IE	0x0400
#define _RICHEDIT_VER	0x0100

$$IF(CREATE_COM_SERVER)
#define _WIN32_WINNT 0x0400
#define _ATL_APARTMENT_THREADED
$$ENDIF //CREATE_COM_SERVER

#include <atlbase.h>
#include <atlbase61.h>
#include <atlapp.h>

$$IF(CREATE_COM_SERVER)
extern CServerAppModule _Module;
$$ELSE
extern CAppModule _Module;
$$ENDIF //!CREATE_COM_SERVER

#include <atlcom.h>
$$IF(USE_AXWIN)
#include <atlhost.h>
$$ENDIF //USE_AXWIN
#include <atlwin.h>
$$IF(USE_AXWIN)
#include <atlctl.h>
$$ENDIF //USE_AXWIN

//{{AFX_INSERT_LOCATION}}
// $$INSERT_LOCATION_COMMENT$$

#endif // !defined($$FILE_NAME_SYMBOL$$_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.

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
Spain Spain
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions