diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-12-23 10:19:51 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-12-23 10:19:51 +0100 |
commit | 2047dc2cf89861f376213e19c30a469ba8cb4452 (patch) | |
tree | d8420270c476f7673a39435acf8bbe31bed7137b /lib/efl/native/eet.rb | |
parent | c5c6fb46dd3e3bd530c24af0d1177acf5f7500ea (diff) | |
download | ffi-efl-2047dc2cf89861f376213e19c30a469ba8cb4452.zip ffi-efl-2047dc2cf89861f376213e19c30a469ba8cb4452.tar.gz |
follow C API
Diffstat (limited to 'lib/efl/native/eet.rb')
-rw-r--r-- | lib/efl/native/eet.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/efl/native/eet.rb b/lib/efl/native/eet.rb index 6f32661..dac5522 100644 --- a/lib/efl/native/eet.rb +++ b/lib/efl/native/eet.rb @@ -161,6 +161,8 @@ module Efl [ :eet_delete, [ :eet_file_p, :string ], :int ], # EAPI Eina_Bool eet_alias(Eet_File *ef, const char *name, const char *destination, int compress); [ :eet_alias, [ :eet_file_p, :string, :string, :int ], :eina_bool ], + # EAPI const char * eet_file_get(Eet_File *ef); + [ :eet_file_get, [ :eet_file_p ], :string ], # EAPI const char * eet_alias_get(Eet_File *ef, const char *name); [ :eet_alias_get, [ :eet_file_p, :string ], :string ], # EAPI char ** eet_list(Eet_File *ef, const char *glob, int *count_ret); |