Click here to Skip to main content
Licence 
First Posted 28 Feb 2000
Views 85,546
Bookmarked 24 times

Accessing Windows 2000 specific APIs

By | 28 Feb 2000 | Article
Having trouble accessing the new Windows 2000 APIs? This article may help.

In order to access Win2000 specific APIs etc, one needs the following #define in the application's stdafx.h (before any other #includes)

#define _WIN32_WINNT 0x0500
With the latest platform SDK, this also has the side effect of changing the definition for the OPENFILENAME struct; in particular it makes it larger. This is because of the following lines in the "CommDlg.h"
typedef struct tagOFNA {
	DWORD        lStructSize;
	...
	...
	LPCSTR       lpTemplateName;
#ifdef _MAC
	LPEDITMENU   lpEditInfo;
	LPCSTR       lpstrPrompt;
#endif
#if (_WIN32_WINNT >= 0x0500)
	void *       pvReserved;
	DWORD        dwReserved;
	DWORD        FlagsEx;
#endif // (_WIN32_WINNT >= 0x0500)
} OPENFILENAMEA, *LPOPENFILENAMEA;

This means when the definition of class CFileDialog is compiled, it's m_ofn member will have a different size than in the MFC dlls. This is because CFileDialog is defined as:

class CFileDialog : public CCommonDialog
{
	DECLARE_DYNAMIC(CFileDialog)
	public:
	// Attributes
	OPENFILENAME m_ofn; // open file parameter block
	...
	...
};

When a CFileDialog is used in your code and is destructed, the wrong offsets into memory for member varialbes will be unsed, and in particular, the m_strFilter will not destruct properly.

The work-around for this is to #undef _WIN32_WINNT before the #include <afxext.h> in the application's stdafx.h:

#define _WIN32_WINNT 0x0500     // allow Win2000 specific calls
#define VC_EXTRALEAN            // Exclude rarely-used stuff from Windows headers
#include <afxwin.h>             // MFC core and standard components
#undef _WIN32_WINNT             // allow CFileDialog to build with the correct size
#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

Now, <afxext.h> will (indrectly) #include <CommDlg.h> and define CFileDIalog all without the offending _WIN32_WINNT.

NOTE: This only works because the VC_EXTRALEAN stops <afxwin.h> from including CommDlg.h earlier.

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

About the Author

Roger Onslow



United States United States

Member



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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralFor VC++ 6.0 and extended functions PinmemberRobCC7:56 10 Sep '08  
QuestionIs this fix still required for VC 2005? Pinmemberpsandrene7:25 3 Oct '07  
GeneralHelps also with CFileDialog Pinmemberarschimedes3:52 22 Feb '07  
Generalgood stuff Pinmembercarl12480:19 30 Jan '04  
Questionhow to get user highlighted text in Internet Explorer? PinmemberHolly Lee17:51 24 Feb '03  
GeneralAnother Solution PinmemberAlois Kraus6:13 14 Nov '02  
GeneralRe: Another Solution PinmemberPandele Florin22:17 7 Feb '07  
GeneralFor those of you who still need to access NT functions... PinsussOpus8:39 7 Sep '00  
GeneralRe: For those of you who still need to access NT functions... Pinmemberinner7:49 31 Mar '04  
GeneralBut builds wont work in 98 PinsussCheekyboy19:26 10 Apr '00  
GeneralRe: But builds wont work in 98 PinsussRoger Onslow19:38 10 Apr '00  
GeneralRe: But builds wont work in 98 PinsussCheekyboy21:29 11 Apr '00  
GeneralRe: But builds wont work in 98 PinsussBovineOne2:21 30 Apr '00  
GeneralRe: But builds wont work in 98 PinmemberEhsan Akhgari8:26 5 Jan '02  
GeneralRe: But builds wont work in 98 PinmemberDaniel Turini11:48 29 Jul '02  

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.5.120517.1 | Last Updated 29 Feb 2000
Article Copyright 2000 by Roger Onslow
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid