[Vala] remote control library in Vala?

2012-03-26 Thread Brian Duffy
Hi, Is there an open source remote control library out there with Vala bindings? -- Duff ___ vala-list mailing list vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

[Vala] How to deal with target attribute in VAPI for C struct?

2012-03-26 Thread mar...@saepia.net
Hi, I have a part of C code that I need to include in my Vala project. It contains code +/- like that: typedef void (*computing_finished_cb) (void *self); typedef struct computer { computing_finished_cb on_finished; void* parent; } computer; size_t computer_compute(computer *c); I've

Re: [Vala] How to deal with target attribute in VAPI for C struct?

2012-03-26 Thread mar...@saepia.net
Ugh, sorry, obviously that code:  public delegate void ComputingFinishedCallback(); should be: public delegate void ComputingFinishedCallback(void* sender); m. ___ vala-list mailing list vala-list@gnome.org

[Vala] [ANNOUNCE] Vala 0.16.0 - Compiler for the GObject type system

2012-03-26 Thread Jürg Billeter
We are pleased to announce version 0.16.0 of Vala, a compiler for the GObject type system. Vala 0.16.0 is now available for download at: http://download.gnome.org/sources/vala/0.15/ Changes since 0.15.2 * Add udisks2 bindings. * Bug fixes and binding updates. Vala is a programming language

Re: [Vala] [ANNOUNCE] Vala 0.16.0 - Compiler for the GObject type system

2012-03-26 Thread Denis Kuzmenok
Wrong link ;) Monday, March 26, 2012, 7:47:19 PM, you wrote: We are pleased to announce version 0.16.0 of Vala, a compiler for the GObject type system. Vala 0.16.0 is now available for download at: http://download.gnome.org/sources/vala/0.15/ Changes since 0.15.2 * Add udisks2

[Vala] CCode finish_function

2012-03-26 Thread tomw
Hi, dealing with asynchronous construction I stumbled across CCode statements (e.g. in the gio-2.0 bindings) like: [CCode (finish_function = g_async_initable_new_finish)] Unfortunately, I could not find any documentation for it neither in [1] nor elsewhere. Any hint on how to use this? Is this

Re: [Vala] undefined reference to 'SDL_Init' and/or 'WinMain@16' (under Windows)

2012-03-26 Thread Joseph Montanez
Sorry I am just now getting to this, but here is my work to get SDL + Opengl in vala working on windows: https://github.com/gorilla3d/Hi-Panda/blob/master/Makefile It was a painful process. You don't need a main or winmain functions at all. I ended up side loading cygwin, and visual studio