This has actually occurred twice now. I'm writing a cross-platform application, and some of my function names conflict with the Windows API. What I did (for example with LoadObject) was...

#undef GetObject

Is this an okay approach, or should I rename my functions?

link|improve this question
Wait until you find out how the objc.h file defines BOOL :/ – Chris Becke Oct 5 '10 at 8:29
feedback

3 Answers

up vote 1 down vote accepted

If you intend for your code to be used alongside of the Windows API, I'd recommend renaming the functions. Yes, that's a hassle, but it's (in my opinion) better than undefining parts of the Windows API, even if you don't use those parts (someone else using your code might need to use those parts).

link|improve this answer
Alright, and thanks for the info on the Win API defining its names as macros. – person Oct 5 '10 at 3:08
feedback

You could put your functions in a namespace or a class (if applicable). If you are calling within a class then remember the this keyword. this->aliasedFunction();

link|improve this answer
4  
The problem is that the Windows API defines most of its names as macros, which don't respect namespaces or classes. – James McNellis Oct 5 '10 at 3:05
feedback

If you're working with C++ you should put your functions into classes and namespaces to avoid these sort of problems (a.k.a methods).

link|improve this answer
It is a private method. Still occurred. Understand though, have a good idea of an approach to take. Thanks. – person Oct 5 '10 at 3:04
The problem is that many (or most) Win32 APIs are really macros that define to an ANSI or Unicode variant of the underlying API. And the macro "namespace" doesn't care one little bit about the C++ namespace or class scope. – Michael Burr Oct 5 '10 at 3:34
You're Absolutely right. He should rename the methods too. – dtroy Oct 5 '10 at 3:40
Windows defines LoadObject as LoadObjectA or LoadObjectW for unicode builds. Of course, you can #undef the conflicting definitions (inside #ifdef _WIN32 block, of course), but I think the following rule is better: either you stay away from platform-defined names, or you separate the bulk of your application as a library that never includes Windows, and then use these names freely. – Alex Emelianov Oct 5 '10 at 3:46
feedback

Your Answer

 
or
required, but never shown

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