How to handle nested structs when converting C headers?

Adam D. Ruppe destructionator at gmail.com
Wed Dec 11 15:38:12 PST 2013


On Wednesday, 11 December 2013 at 23:35:04 UTC, Gary Willoughby 
wrote:
>     static union internalRep


try

static union InternalRep { /* note the capital letter */
   /* snip */
}
InternalRep internalRep;; // still need a decl



More information about the Digitalmars-d-learn mailing list