* Carsten Haitzler, ([EMAIL PROTECTED]) napisał:
> this is one of those problems of making all those bindings. the api changes to
> the point where u can't identify 1:1 mapping to the C calls, and all the
> examples and src docs are for the C api.
wrapper library without own documentation or own examples?

> you want to make the api wrapper map as
> closely as possible to the C api in name AND api calls
> so
> 
> Evas *evas = evas_new();
> ->
> Evas evas = new Evas();
> 
> Evas_Object *obj = evas_object_rectangle_add(evas);
> ->
> Evas_Object obj = evas->object_rectangle_add();
what about strip object_ from last line? (this is only cosmetic change)
  Evas_Object *obj = evas_object_rectangle_add(evas);
->
  Evas_Object obj = evas.rectangle_add();



-------------------------------------------------------
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to