12/04/2008, 23h16
|
#2
|
|
|
Re: ow to prevent macro expansion in C/C++?
3mwn8tbfrd19ph0@mail.htl22.at wrote:
> I am writing codes in windows and Unicode. The windows header file
> defines CreateFont into CreateFontW. I am using a class which has a
> function CreateFile. So when compiling, I got error that the
> CreateFontW is not a member of the class.
>
> What should I do?
>
> Thanks for your !
#undef CreateFont
and you are all set
|
|
|
|