Re: [Vala] enum typing

2009-06-27 Thread Shawn Ferris
It doesn't.. I put together an autoconf macro script to determine the library/include paths.. As well as the libraries to link against as they differ from release to release and installation type. The wrapper interface will include pkgconfig and obviously be more Vala friendly.. That is,

[Vala] enum typing

2009-06-26 Thread Shawn Ferris
Hello again, As you know, I've been working on the Oracle OCI bindings. Now that it's funcational, I wanna wrap it into a more friendly, vala style interface. I would like more of the options as properties, but I'm not sure if there's a special way to define them. EG: using OCI; public class

Re: [Vala] enum typing

2009-06-26 Thread Yu Feng
On Fri, 2009-06-26 at 21:40 -0600, Shawn Ferris wrote: Hello again, As you know, I've been working on the Oracle OCI bindings. Now that it's funcational, I wanna wrap it into a more friendly, vala style interface. I would like more of the options as properties, but I'm not sure if there's a

Re: [Vala] enum typing

2009-06-26 Thread Shawn Ferris
Now, in the Vapi, I could do this to type args: (HType being the enum in this case) public int HandleFree ( void* handlp, HType type ); so, I'm not sure what the difference really is? looks like you triggered a bug in valac