Click here to Skip to main content
15,880,469 members
Articles / Desktop Programming / WTL
Article

Using WTL with Visual C++ 2005 Express Edition

Rate me:
Please Sign up or sign in to vote.
4.87/5 (33 votes)
13 Jan 2006CPOL2 min read 518K   1.9K   69   77
This article explains the procedure for using WTL with Visual Studio 2005 Express edition.

Introduction

Visual C++ 2005 Express Edition was released on 11/7/2005. It has a great native C++ compiler and a smart editor. The best thing is that it is free. We can use it for our WTL programming for free. I posted the procedure for the same here on 11/9/2005. Now, I am submitting it to CodeProject.

Step by step

  1. Download and install Visual C++ 2005 Express Edition from MSDN.
  2. Download and install the Platform SDK, and update the Visual C++ setting as detailed here.
  3. Update the Visual C++ directories in the Projects section of the Options dialog box. Add the ATL path to the Include files (the path shown is the default, use the path to your actual location):
    C:\Program Files\Microsoft Platform SDK\include\atl
  4. Change atlwin.h and atlbase.h in the ATL folder of the Platform SDK install as follows:
    • Change SetChainEntry function at line 1725 of atlwin.h - define "int i" at the first line of the function body.
      BOOL SetChainEntry(DWORD dwChainID, CMessageMap* pObject, DWORD
      dwMsgMapID = 0)
      {
          int i;
          // first search for an existing entry
          
          for(i = 0; i < m_aChainEntry.GetSize(); i++)
    • Change AllocStdCallThunk and FreeStdCallThunk at line 287 of atlbase.h to the new macros:
      /* Comment it
      PVOID __stdcall __AllocStdCallThunk(VOID);
      VOID __stdcall __FreeStdCallThunk(PVOID);
      
      #define AllocStdCallThunk() __AllocStdCallThunk()
      #define FreeStdCallThunk(p) __FreeStdCallThunk(p)
      
      #pragma comment(lib, "atlthunk.lib")
      */
      #define AllocStdCallThunk() HeapAlloc(GetProcessHeap(), 
                                    0, sizeof(_stdcallthunk))
      #define FreeStdCallThunk(p) HeapFree(GetProcessHeap(), 0, p)
  5. Download and install WTL from SourceForge:
  6. Download the AppWizard for Visual Studio 2005 Express from the link above this page, unzip and copy the JS file into the WTL\AppWiz folder, double click it to install the WTL Wizard into VC Express.

Enjoy WTL and VC Express free!

Some Problems

Because VC++ Express doesn't include a "Resource Editor", you will get an error when creating a Dialog or FormView. But, once the project and source files are created, you can open the project directly. If you can find a free resource editor, please tell me.

Comments: rvRoman told us of a free resource editor, and tsehonkit gave us a right link.

History

  • 1/12/2006 - first submit, for WTL7.5.
  • 1/27/2006 - fixed an editing error.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Japan Japan
I write software and share it to make our life more easy and interesting.
Welcome to my site:Share our software. Love Programming, Love Life.

Comments and Discussions

 
Generalerrors with Vstudio8 express version Pin
wolky11-Jun-06 8:12
wolky11-Jun-06 8:12 
GeneralRe: errors with Vstudio8 express version Pin
Baryon Lee19-Jun-06 12:58
Baryon Lee19-Jun-06 12:58 
QuestionCan not insert ATL Simple Object in WTL7.5 with visual studio 2005 Pin
jikanyanwin3228-May-06 16:30
jikanyanwin3228-May-06 16:30 
AnswerRe: Can not insert ATL Simple Object in WTL7.5 with visual studio 2005 Pin
Tony Ioanides22-Aug-06 20:44
Tony Ioanides22-Aug-06 20:44 
GeneralRe: Can not insert ATL Simple Object in WTL7.5 with visual studio 2005 Pin
JohnnyMalaria25-Oct-06 8:17
JohnnyMalaria25-Oct-06 8:17 
GeneralThank you Pin
mehrcpp28-May-06 11:36
mehrcpp28-May-06 11:36 
GeneralWTL Dialog application Pin
[Matrix]7-May-06 5:00
[Matrix]7-May-06 5:00 
GeneralRe: WTL Dialog application Pin
Baryon Lee8-May-06 5:15
Baryon Lee8-May-06 5:15 
The reason that this is happening is because VC++ 2005 Express does not
have resource editor. WTL App Wizard is trying to open dialog template
in resource editor, and that fails.

It is not as bad as it looks - all files and the project are created
after this error, and if you open the project in VC++ 2005 Express, it
will build just fine.

Cheers,
Nenad






Share our software. Love Programming, Love Life.
Generallinking error Pin
basil300019-Feb-06 10:17
basil300019-Feb-06 10:17 
GeneralRe: linking error Pin
basil300019-Feb-06 11:25
basil300019-Feb-06 11:25 
GeneralRe: linking error Pin
jas603310-Dec-06 23:49
jas603310-Dec-06 23:49 
GeneralRadasm resource editor problems Pin
a1233454518-Feb-06 16:49
a1233454518-Feb-06 16:49 
GeneralRe: Radasm resource editor problems Pin
[Matrix]7-May-06 5:05
[Matrix]7-May-06 5:05 
QuestionRe: Radasm resource editor problems Pin
const31418-Jul-06 2:11
const31418-Jul-06 2:11 
Generalworks man ! Pin
Emil NEAGU9-Feb-06 1:25
Emil NEAGU9-Feb-06 1:25 
Generalerror C2065: '_Module' : undeclared identifier Pin
john bond3-Feb-06 7:10
john bond3-Feb-06 7:10 
GeneralRe: error C2065: '_Module' : undeclared identifier Pin
lanepaul16-Aug-06 23:00
lanepaul16-Aug-06 23:00 
Generalneed atl.lib Pin
Navi30-Jan-06 10:19
Navi30-Jan-06 10:19 
GeneralRe: need atl.lib Pin
mb2sync6-Feb-06 20:49
mb2sync6-Feb-06 20:49 
GeneralNot working :( Pin
Guybrush25-Jan-06 3:30
Guybrush25-Jan-06 3:30 
GeneralRe: Not working :( Pin
Florin Tanasa26-Jan-06 7:46
Florin Tanasa26-Jan-06 7:46 
GeneralRe: Not working :( Pin
Baryon Lee26-Jan-06 17:06
Baryon Lee26-Jan-06 17:06 
GeneralRe: Not working :( Pin
Baryon Lee26-Jan-06 22:14
Baryon Lee26-Jan-06 22:14 
GeneralRe: Not working :( Pin
Florin Tanasa26-Jan-06 23:15
Florin Tanasa26-Jan-06 23:15 
GeneralRe: Not working :( Pin
Guybrush28-Jan-06 2:39
Guybrush28-Jan-06 2:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.