-------------------------------------------------------

If the .h has:

typedef struct _Booger Booger;

struct Booger
{
   int a;
};


Oops, typo! should be:

 typedef struct _Booger Booger;

 struct _Booger
 {
    int a;
 };

Reply via email to