Surendra, 

A CFFI feature request whereby a struct is replaced with :pointer only if 
that slot is actually a pointer to a struct. For example: 

struct _a_struct { int x; int y; } a_struct;
typedef struct _a_struct *b_struct; 

struct _b_struct { a_struct struct_1; b_struct struct_2; } b_struct; 

Should be: 

(defcstruct b_struct
        (struct_1 a_struct)
        (struct_2 :pointer)) 

Thanks,
 -Luke
_______________________________________________
application-builder mailing list
[EMAIL PROTECTED]
http://www.lispniks.com/mailman/listinfo/application-builder

Reply via email to