Bernie wrote: > Anyone know the correct FB equivalent of: > typedef struct OpaqueWindowGroupRef * WindowGroupRef; > ? > I've used this for now: > #define WindowGroupRef as WindowRef Your definition will work perfectly well in FB, and so would #define WindowGroupRef as long but this #define WindowGroupRef as pointer // to OpaqueWindowGroupRef is better because it hints at the nature of a WindowGroupRef. Robert P.