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.
You need to declare that
_CONTEXTis astruct. And declare it asextern "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”.