如何忽略定义(VS2008)

发布于 2024-07-25 08:04:46 字数 444 浏览 4 评论 0原文

我有一些源代码想用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧城空念 2024-08-01 08:04:46

您可以使用

#undef TRANSPARENT

,但如果之后使用 WinGDI TRANSPARENT,则可能会在其他地方导致错误。 一个(混乱的)解决方法可能是:

#ifdef TRANSPARENT
#define _TRANSPARENT TRANSPARENT
#undef TRANSPARENT
#endif

在您的代码之后:

#ifdef _TRANSPARENT
#define TRANSPARENT _TRANSPARENT
#endif

You can use

#undef TRANSPARENT

but that may cause errors elsewhere, if the WinGDI TRANSPARENT is used afterwards. A (messy) workaround could be:

#ifdef TRANSPARENT
#define _TRANSPARENT TRANSPARENT
#undef TRANSPARENT
#endif

and after your code:

#ifdef _TRANSPARENT
#define TRANSPARENT _TRANSPARENT
#endif
疑心病 2024-08-01 08:04:46

如果您不使用 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文