Re: [Gambas-user] How to pass a structure to a C routine
nevermind, just found out ;) -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] How to pass a structure to a C routine
Hi: I need to pass a structure to a C routine Public Struct punto3d x As Float Y As Float z As Float End Struct and call it like this: dim p1 as new punto3d fXnew = rotate3D(p1) how to declare? Public Extern rotate3D( point3D as ?) As Float and how to use the structure i