diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-10-21 11:38:30 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-10-21 11:38:30 +0200 |
commit | 40f327666505d75a4cc9059ccd45ab949f73c6c1 (patch) | |
tree | 1ff0cb33987f006132d8d57d1f57e63b90d8660e /lib/efl/native/elementary.rb | |
parent | 2b7eee3d19cbcf743302ec009e0359e90d172533 (diff) | |
download | ffi-efl-40f327666505d75a4cc9059ccd45ab949f73c6c1.zip ffi-efl-40f327666505d75a4cc9059ccd45ab949f73c6c1.tar.gz |
native eet and elementary: remove undefined functions, add required dependencies
Diffstat (limited to 'lib/efl/native/elementary.rb')
-rw-r--r-- | lib/efl/native/elementary.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/efl/native/elementary.rb b/lib/efl/native/elementary.rb index a046731..ca54bb3 100644 --- a/lib/efl/native/elementary.rb +++ b/lib/efl/native/elementary.rb @@ -3,6 +3,9 @@ # require 'efl/ffi' require 'efl/native/evas' +require 'efl/native/edje' +require 'efl/native/emap' +require 'efl/native/eina_list' # module Efl # @@ -406,8 +409,6 @@ module Efl # # FUNCTIONS fcts = [ - # EAPI int elm_main(int argc, char **argv) - [ :elm_main, [ :int, :string_array ], :int ], # EAPI int elm_init(int argc, char **argv); [ :elm_init, [ :int, :string_array ], :int ], # EAPI int elm_shutdown(void); @@ -1871,8 +1872,6 @@ module Efl [ :elm_web_bg_color_set, [ :evas_object_p, :int, :int, :int, :int ], :void ], # EAPI void elm_web_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b, int *a); [ :elm_web_bg_color_get, [ :evas_object_p, :int_p, :int_p, :int_p, :int_p ], :void ], - # EAPI char *elm_view_selection_get(const Evas_Object *obj); - [ :elm_view_selection_get, [ :evas_object_p ], :string ], # EAPI void elm_web_popup_selected_set(Evas_Object *obj, int index); [ :elm_web_popup_selected_set, [ :evas_object_p, :int ], :void ], # EAPI Eina_Bool elm_web_popup_destroy(Evas_Object *obj); |