如何忽略定义(VS2008)
我有一些源代码想用 VS2008 编译,但有很多错误我必须修复。 现在有一些枚举,例如:
enum
{
BACKGROUND = 0x00000001,
WEAPON = 0x00000002,
TRANSPARENT = 0x00000004
}
问题是 TRANSPARENT 被定义为:
#define TRANSPARENT 1
在 WinGDI.h 中
这将导致编译错误,例如:
error C2143: syntax error : missing '}' before 'constant'
是否可以在不重命名枚举中的字段并且不从中删除 WinGDI.h 的情况下修复该错误包含(我不知道它包含在哪里..)
i have some sourcecode that I want to compile with VS2008 but there are many errors i have to fix.
Now there are some Enums like:
enum
{
BACKGROUND = 0x00000001,
WEAPON = 0x00000002,
TRANSPARENT = 0x00000004
}
The problem is that TRANSPARENT is defined as:
#define TRANSPARENT 1
in WinGDI.h
That will cause a compile error like:
error C2143: syntax error : missing '}' before 'constant'
Is it possible to fix that error without renaming the field in the enum and without removing the WinGDI.h from the includes (I don't know where it's included..)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
,但如果之后使用 WinGDI TRANSPARENT,则可能会在其他地方导致错误。 一个(混乱的)解决方法可能是:
在您的代码之后:
You can use
but that may cause errors elsewhere, if the WinGDI TRANSPARENT is used afterwards. A (messy) workaround could be:
and after your code:
如果您不使用 WinGDI.h 中的 TRANSPARENT 值,则只需在枚举之前添加:
#undef TRANSPARENT
(这只是一种解决方法,最好在枚举中重命名 TRANSPARENT)。
If you are not using the value TRANSPARENT from WinGDI.h, you can simply add:
#undef TRANSPARENT
before the enum (this is only a workaround, better rename the TRANSPARENT in the enum).