Click here to Skip to main content
Click here to Skip to main content

Macro to initialize GDI+ in VC6.0 MFC projects

By , 20 Apr 2003
 

Introduction

I have started to use GDI+ with MFC in VC++ 6.0 and got tired of always having to remember to add the GDI+ startup code and header and library files to my project. So I decided to write a simple VS macro that would do all this for me.

What's added?

In stdafx.h file the following lines are added:

// GdiPlus -- Added by the GdiPlus macro
#include <gdiplus.h>
using namespace Gdiplus;
#pragma comment (lib, "Gdiplus.lib")

In the <AppName>.h header file the following lines are added:

// GdiPlus -- Added by the GdiPlus macro
protected:
    ULONG_PTR m_gdiplustoken;

And if the application's ExitInstance() function is not already declared, a declaration is also added in the virtual functions section.

// GdiPlus -- Added by the GdiPlus macro
public:
virtual int ExitInstance();

In the <AppName>.cpp source file, the following lines are added to the InitInstance() function.

// GdiPlus -- Added by the GdiPlus macro
GdiplusStartupInput gdiplusstartupinput;
GdiplusStartup (&m_gdiplusToken, &gdiplusstartupinput, NULL);

And, in the ExitInstance() function, which is added if it is not already present, the following lines are added:

// GdiPlus -- Added by the GdiPlus macro
GdiplusShutdown(m_gdiplusToken);

How to install

Simply save the GdiPlus.dsm file in your <Visual Studio>/Common/MSDev98/Macros/ folder. Then, in Dev Studio, select the Tools menu, Macro dialog. On the Macro dialog click the Options button to show an extra four buttons. Click the Loaded Files button to bring up another dialog. Scroll down the list of macro files until you find GdiPlus. Select the check box for GdiPlus and Bob's your uncle.

That's it! I hope someone finds this useful because I sure do!

Updates

  • April 21, 2003 - Minor bug fix. Thanks to Larry Desonier

License

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

About the Author

PJ Arends
President
Canada Canada
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralLicensing for commercial application Pinmemberwill626219 Oct '10 - 5:09 
GeneralRe: Licensing for commercial application PinmemberPJ Arends20 Oct '10 - 7:09 
GeneralRe: Licensing for commercial application Pinmemberwill626216 Nov '10 - 5:13 
GeneralDownload GDI+ version 1.1 Pinsusspubba23 May '04 - 17:52 
GeneralRe: Download GDI+ version 1.1 PinmemberRYU^^27 Sep '05 - 19:47 
GeneralRe: Download GDI+ version 1.1 PinmemberJIANG, Sheng[MVP]6 Apr '07 - 6:54 
GeneralUnknown error Pinmembershiggity s28 Mar '04 - 15:48 
GeneralRe: Unknown error PinmemberPJ Arends28 Mar '04 - 16:16 
An "Unknown Error" doesn't tell me much, so I would not know what the problem is. All that line attempts to do is open your StdAfx.h file as a text file with read and write access.
 






Sonork 100.11743 Chicken Little
 
"You're obviously a superstar." - Christian Graus about me - 12 Feb '03
 
Within you lies the power for good - Use it!
GeneralGDIplus.dll Pinmembervimalk5 Feb '04 - 20:32 
GeneralRe: GDIplus.dll PinmemberPJ Arends6 Feb '04 - 6:48 
GeneralRe: GDIplus.dll Pinmemberwaelahmed27 Mar '04 - 23:15 
GeneralRe: GDIplus.dll PinmemberPJ Arends28 Mar '04 - 16:20 
GeneralUsing makro inside a dll Pinsussjung-kreidler8 Oct '03 - 21:31 
GeneralI get some errors Pinmemberstealth kid19 Jun '03 - 4:00 
GeneralRe: I get some errors PinmemberPJ Arends19 Jun '03 - 10:24 
GeneralRe: I get some errors Pinmembernastanet19 Apr '04 - 22:05 
GeneralRe: I get some errors PinmemberPJ Arends19 Apr '04 - 22:16 
GeneralRe: I get some errors PinmemberEinst16 Oct '05 - 19:33 
GeneralWhy not use a simple smart type PinmemberRama Krishna15 Jan '03 - 11:15 
GeneralRe: Why not use a simple smart type Pinsusswangwanxin1@163.net17 Jan '05 - 23:47 
GeneralYep... PinmemberJ.G. Hattingh23 Dec '02 - 7:51 
GeneralWhere Can I found more GDI+ materials PinmemberNing Cao22 Dec '02 - 20:11 
GeneralRe: Where Can I found more GDI+ materials PinmemberPJ Arends23 Dec '02 - 9:49 
GeneralRe: Where Can I found more GDI+ materials Pinmemberptfoof1 May '04 - 15:30 
GeneralGraphics hardware acceleration with GDI+ PinmemberGiles10 Dec '02 - 3:04 
GeneralRe: Graphics hardware acceleration with GDI+ PinmemberPJ Arends10 Dec '02 - 6:34 
GeneralThanks PinmemberAli Khanlarkhani9 Dec '02 - 20:38 

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 21 Apr 2003
Article Copyright 2002 by PJ Arends
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid