diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-25 16:34:52 +0200 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-25 16:34:52 +0200 | 
| commit | ed36c7e29a0d20cb75442b1fea3320020284d724 (patch) | |
| tree | 8eff76f1ea9622eed24ae0144cacb38579c7928d | |
| parent | 03e06b0dbac898a068e059e2ed61532290f85295 (diff) | |
| download | ffi-efl-ed36c7e29a0d20cb75442b1fea3320020284d724.zip ffi-efl-ed36c7e29a0d20cb75442b1fea3320020284d724.tar.gz | |
update elementary ffi
| -rw-r--r-- | lib/efl/elementary/elementary-ffi.rb | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/lib/efl/elementary/elementary-ffi.rb b/lib/efl/elementary/elementary-ffi.rb index e867035..5d37153 100644 --- a/lib/efl/elementary/elementary-ffi.rb +++ b/lib/efl/elementary/elementary-ffi.rb @@ -336,6 +336,26 @@ module Efl          [ :elm_run, [  ], :void ],          # EAPI void elm_exit(void);          [ :elm_exit, [  ], :void ], +        # EAPI void elm_app_info_set(void *mainfunc, const char *dom, const char *checkfile); +        [ :elm_app_info_set, [ :void_p, :string, :string ], :void ], +        # EAPI void elm_app_compile_bin_dir_set(const char *dir); +        [ :elm_app_compile_bin_dir_set, [ :string ], :void ], +        # EAPI void elm_app_compile_lib_dir_set(const char *dir); +        [ :elm_app_compile_lib_dir_set, [ :string ], :void ], +        # EAPI void elm_app_compile_data_dir_set(const char *dir); +        [ :elm_app_compile_data_dir_set, [ :string ], :void ], +        # EAPI void elm_app_compile_locale_set(const char *dir); +        [ :elm_app_compile_locale_set, [ :string ], :void ], +        # EAPI const char *elm_app_prefix_dir_get(void); +        [ :elm_app_prefix_dir_get, [  ], :string ], +        # EAPI const char *elm_app_bin_dir_get(void); +        [ :elm_app_bin_dir_get, [  ], :string ], +        # EAPI const char *elm_app_lib_dir_get(void); +        [ :elm_app_lib_dir_get, [  ], :string ], +        # EAPI const char *elm_app_data_dir_get(void); +        [ :elm_app_data_dir_get, [  ], :string ], +        # EAPI const char *elm_app_locale_dir_get(void); +        [ :elm_app_locale_dir_get, [  ], :string ],          # EAPI void elm_quicklaunch_mode_set(Eina_Bool ql_on);          [ :elm_quicklaunch_mode_set, [ :eina_bool ], :void ],          # EAPI Eina_Bool elm_quicklaunch_mode_get(void); | 
