Re: [E-devel] ruby ffi binding

2011-04-26 Thread Jérémy Zurcher
On Tuesday 26 April 2011 21:55, Gustavo Sverzut Barbieri wrote : > On Tue, Apr 26, 2011 at 8:09 PM, Jérémy Zurcher wrote: > > Hi Gustavo > > > > On Tuesday 26 April 2011  10:37, Gustavo Sverzut Barbieri wrote : > >> > >> It's useless to expose such details, as we don't even write C code > >> that

Re: [E-devel] ruby ffi binding

2011-04-26 Thread Gustavo Sverzut Barbieri
On Tue, Apr 26, 2011 at 8:09 PM, Jérémy Zurcher wrote: > Hi Gustavo > > On Tuesday 26 April 2011  10:37, Gustavo Sverzut Barbieri wrote : >> >> It's useless to expose such details, as we don't even write C code >> that uses it. Just bind ecore_evas and you'll be fine. > yeah right, please don't be

Re: [E-devel] ruby ffi binding

2011-04-26 Thread Jérémy Zurcher
Hi Gustavo On Tuesday 26 April 2011 10:37, Gustavo Sverzut Barbieri wrote : > > It's useless to expose such details, as we don't even write C code > that uses it. Just bind ecore_evas and you'll be fine. yeah right, please don't be reductive enlightenment.org says Evas is a canvas display librar

Re: [E-devel] ruby ffi binding

2011-04-26 Thread Gustavo Sverzut Barbieri
On Tue, Apr 26, 2011 at 10:23 AM, Carsten Haitzler wrote: > On Tue, 26 Apr 2011 14:24:19 +0200 Jérémy Zurcher said: > > though we value your patch and we always say "send patches"... we can't accept > that patch as it breaks api. we basically cannot break our api now we are 1.0 > - > not until a

Re: [E-devel] ruby ffi binding

2011-04-26 Thread The Rasterman
On Tue, 26 Apr 2011 14:24:19 +0200 Jérémy Zurcher said: though we value your patch and we always say "send patches"... we can't accept that patch as it breaks api. we basically cannot break our api now we are 1.0 - not until a 2.0 and we're not jumping right on that any time soon. it's evolution

Re: [E-devel] ruby ffi binding

2011-04-26 Thread The Rasterman
On Tue, 26 Apr 2011 14:50:28 +0200 Jérémy Zurcher said: > Second time that I respond to the author, not the mailinglist ... shame on me. > > efl api directly exported to ruby ? yes, it's direct access to C external > functions through ruby module functions > > thanks to efl headers quality and

Re: [E-devel] ruby ffi binding

2011-04-26 Thread Jérémy Zurcher
Second time that I respond to the author, not the mailinglist ... shame on me. efl api directly exported to ruby ? yes, it's direct access to C external functions through ruby module functions thanks to efl headers quality and consistency, efl function prototypes, structs, ... are automaticaly

Re: [E-devel] ruby ffi binding

2011-04-26 Thread Jérémy Zurcher
Hi, working on ffi-efl (https://github.com/jeremyz/ffi-efl), regarding to what I seen in other evas engines, Evas_Engine_buffer struct should be updated like this --- src/modules/engines/buffer/Evas_Engine_Buffer.h.orig2011-04-26 13:45:19.060124298 +0200 +++ src/modules/engines/buffer/Ev

Re: [E-devel] ruby ffi binding

2011-04-24 Thread The Rasterman
On Wed, 20 Apr 2011 16:21:52 +0200 Jérémy Zurcher said: hmm interesting. that looks pretty much like the efl api directly exported to ruby. callbacks work? what abotu some weird funcs that require u pass in a struct and fill it with content like func ptrs etc? > Sorry I answered to Thomas but no

Re: [E-devel] ruby ffi binding

2011-04-20 Thread Peter van de Werken
On Wed, Apr 20, 2011 at 11:04:05PM +0900, Daniel Juyung Seo wrote: > LInks are broken :( > I don't have any clue what ffi is even I wanna know. > Any hints? FFI probably stands for 'Foreign Function Interface' meaning it provides a way for binding with dynamic libraries it might be related to http

Re: [E-devel] ruby ffi binding

2011-04-20 Thread Jérémy Zurcher
Sorry I answered to Thomas but not to this list; about FFI : https://github.com/ffi/ffi DESRIPTION Ruby-FFI is a ruby extension for programmatically loading dynamic libraries, binding functions within them, and calling those functions from Ruby code. ffi-e17 has just been rename ffi-efl, so the

Re: [E-devel] ruby ffi binding

2011-04-20 Thread Daniel Juyung Seo
LInks are broken :( I don't have any clue what ffi is even I wanna know. Any hints? Thanks. Daniel Juyung Seo (SeoZ) On Wed, Apr 20, 2011 at 9:27 PM, Vincent Torri wrote: > > > On Wed, 20 Apr 2011, Thomas Gstädtner wrote: > > On Wed, Apr 20, 2011 at 11:03, Jérémy Zurcher wrote: >> >>> Hello,

Re: [E-devel] ruby ffi binding

2011-04-20 Thread Vincent Torri
On Wed, 20 Apr 2011, Thomas Gstädtner wrote: On Wed, Apr 20, 2011 at 11:03, Jérémy Zurcher wrote: Hello, I've just launched version 0.0.1 of ffi-e17 in the wild. I hope it will move fast and that I'll get some help. you can find it in many places : http://cgit.asynk.ch/cgi-bin/cgit/ffi-e17 h

Re: [E-devel] ruby ffi binding

2011-04-20 Thread Thomas Gstädtner
On Wed, Apr 20, 2011 at 11:03, Jérémy Zurcher wrote: > Hello, > I've just launched version 0.0.1 of ffi-e17 in the wild. > I hope it will move fast and that I'll get some help. > you can find it in many places : > http://cgit.asynk.ch/cgi-bin/cgit/ffi-e17 > https://github.com/jeremyz/ffi-e17 > htt

Re: [E-devel] ruby ffi binding

2011-04-20 Thread Atton Jonathan
If you test it you maintain it :p 2011/4/20 Lionel Orry > Jérémy Zurcher asynk.ch> writes: > > > > > Hello, > > I've just launched version 0.0.1 of ffi-e17 in the wild. > > I hope it will move fast and that I'll get some help. > > Awesome! Can't wait to test it. I hope I can give feedback soon.

Re: [E-devel] ruby ffi binding

2011-04-20 Thread Lionel Orry
Jérémy Zurcher asynk.ch> writes: > > Hello, > I've just launched version 0.0.1 of ffi-e17 in the wild. > I hope it will move fast and that I'll get some help. Awesome! Can't wait to test it. I hope I can give feedback soon. Lionel

Re: [E-devel] ruby ffi binding

2011-04-20 Thread Vincent Torri
Hey, On Wed, 20 Apr 2011, Jérémy Zurcher wrote: Hello, I've just launched version 0.0.1 of ffi-e17 in the wild. I hope it will move fast and that I'll get some help. you can find it in many places : http://cgit.asynk.ch/cgi-bin/cgit/ffi-e17 https://github.com/jeremyz/ffi-e17 http://rubyforge.o

[E-devel] ruby ffi binding

2011-04-20 Thread Jérémy Zurcher
Hello, I've just launched version 0.0.1 of ffi-e17 in the wild. I hope it will move fast and that I'll get some help. you can find it in many places : http://cgit.asynk.ch/cgi-bin/cgit/ffi-e17 https://github.com/jeremyz/ffi-e17 http://rubyforge.org/projects/ffi-e17/ https://gitorious.org/ffi-e17 b