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.
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".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With