Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Under Windows, after the line

#include <windows.h>

many symbols become defined in the global namespace. For example, Polygon gets defined. Is there then any convenient way to use this symbol to define a custom class as in the following?

class Polygon {
    ...
};

Does putting class Polygon in its own namespace imply that it has to be explicitly qualified with that namespace every time it is used? In other words, is there any way to hide or mask particular definitions from windows.h? Or is there any other practical workaround?

I thought of:

#define Polygon Polygon_windows
#include <windows.h>
#undef Polygon

but this seems quite ugly.

And of course one cannot use namespace windows { #include <windows.h> }.

share|improve this question
3  
Does #define WIN32_LEAN_AND_MEAN before #include <windows.h> get rid of it? There are about 50 more of those, but WIN32_LEAN_AND_MEAN is the bucket-get-rid-of-a-bunch-of-stuff macro – Dave Feb 13 at 3:51
You're many years late to this party I'm afraid. Windows.h defines a lot of stupid crap (like min and max, seriously!). As Dave said, they provide ways to disable many of the declarations. – Ed S. Feb 13 at 4:48
The fundamental problem here is the design of the C language. A pre-processor and #include does not make a modularization system. Of course, C was designed in a different era so we can forgive the lack of vision. But can't we move on by now? – David Heffernan Feb 13 at 8:53
@Dave Thanks for the suggestion. Unfortunately, WIN32_LEAN_AND_MEAN did not help. Neither did the more aggressive VC_EXTRALEAN. But I found that #define NOGDI does omit the symbol (if one does not need GDI). – Hugues Feb 14 at 23:00

2 Answers

The only real defense against such a macro is to isolate definition and direct usage of the class-with-colliding-name down in an implementation file.

Note that <windows.h> is one of the absolute worst regarding willy-nilly macro definitions, with thousands upon thousands of them…

Just yesterday I noted yet another such conflict, between <windows.h>, or to more precise between <windowsx.h>, and Microsoft's own code. Namely the SelectFont macro colliding with the CMFCButton::SelectFont method. Disclaimer: I haven't tried it out, but it does seem like Microsoft in this case didn't even avoid a name collision with their own code.

And then there's the infamous use of min and max macros in <gdiplus.h>. Or, there was such usage. I haven't checked lately.

So, take care! :-)

share|improve this answer
I recommend this thread for how to do this: stackoverflow.com/questions/2574549/… I recommending forward declarations with struct instead of class but otherwise this is fine. This has saved me so much hassle I cannot upvote this answer enough. – NtscCobalt Feb 13 at 5:17
@NtlsCobalt: instead of a brittle forward-declaration of HINSTANCE (its definition has changed over the years, and may depend on whether STRICT is defined), just use an unsigned integer in the publicly visible definition, – Cheers and hth. - Alf Feb 13 at 5:29
DECLARE_HANDLE makes a typedef pointer to a named structure type or void pointer. If you modified the declaration for a STRICT version you should be fine on that count as well but I've never tested it. The added benefit of using the method in the link is that you can later actually include the real definition and then HINSTANCE objects don't require any casts as they will match the real definition. – NtscCobalt Feb 13 at 5:57
The problem illustrated by SelectFont is quite common. It comes up when you don't include <windows.h> in the header that defines a class, but you do include <windows.h> in the source file that defines its member functions. Of course, if you drink the Microsoft kool-aid and use their precompiled headers everywhere the problem doesn't come up. Sigh. – Pete Becker Feb 13 at 13:52

Use namespaces, that's what they're for!

namespace YourNamespace{
  class Polygon{ 
    //
  };
}

Another work-around would be to do this:

#include <windows.h>
#define Polygon _Polygon

class _Polygon{ 
};
share|improve this answer
Macros don't respect namespaces. – Cheers and hth. - Alf Feb 13 at 5:00
Yes my first suggestion is namespace. Then macro – Aniket Feb 13 at 5:01
it seems like you don't understand. a namespace does not help regarding the macro name collision, because macros don't respect namespaces. just try it before posting (you can do that retroactively). – Cheers and hth. - Alf Feb 13 at 5:02
@Cheersandhth.-Alf I think I get it now. Why not undef the macro? – Aniket Feb 13 at 5:04
Undefining is a last resort. Because for a Windows macro, other code may rely on the macro being there. Which you might discover at a much later time when you try to use some library, say. – Cheers and hth. - Alf Feb 13 at 5:06
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.