前向声明 typedef 结构

发布于 2024-08-25 07:12:02 字数 255 浏览 9 评论 0原文

我不知道如何转发声明 Windows 结构。定义是

typedef struct _CONTEXT
{
 ....
} CONTEXT, *PCONTEXT

我真的不想拉入这个标头,因为它被包含在任何地方。

我尝试过

struct CONTEXT

struct _CONTEXT

但没有成功(使用 winnt.h 中的实际结构重新定义基本类型。

I can't figure out how to forward declare a windows struct. The definition is

typedef struct _CONTEXT
{
 ....
} CONTEXT, *PCONTEXT

I really don't want to pull into this header, as it gets included everywhere.

I've tried

struct CONTEXT

and

struct _CONTEXT

with no luck (redefinition of basic types with the actuall struct in winnt.h.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

初见 2024-09-01 07:12:02
extern "C" { typedef struct _CONTEXT CONTEXT, *PCONTEXT; }

您需要声明 _CONTEXT 是一个 struct。并将其声明为 extern "C" 以匹配 windows.h(这是一个 C 头文件)的外部链接。

但是,您不需要提供 typedef 的定义,但如果您这样做,所有定义都必须匹配(一个定义规则)。

编辑:我还忘记了外部“C”。

extern "C" { typedef struct _CONTEXT CONTEXT, *PCONTEXT; }

You need to declare that _CONTEXT is a struct. And declare it as extern "C" to match the external linkage of windows.h (which is a C header).

However, you don't need to provide a definition for a typedef, but if you do, all definitions must match (the One Definition Rule).

EDIT: I also forgot the extern "C".

负佳期 2024-09-01 07:12:02

不是解决方案,而是解决方法:

// h-file
struct MyContext; // forward decl
void f(MyContext * pContext); // use pointer


//cpp-file
#include <windows.h>
struct MyContext {
   CONTEXT cont;
};

void f(MyContext * pContext)
{
   CONTEXT * p_win_cont = & pContext->cont;
   // use p_win_cont
   // ....
}

Not solution but workaround:

// h-file
struct MyContext; // forward decl
void f(MyContext * pContext); // use pointer


//cpp-file
#include <windows.h>
struct MyContext {
   CONTEXT cont;
};

void f(MyContext * pContext)
{
   CONTEXT * p_win_cont = & pContext->cont;
   // use p_win_cont
   // ....
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文