diff options
Diffstat (limited to 'lib/efl/elementary/elementary-ffi.rb')
-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); |