summaryrefslogtreecommitdiffstats
path: root/lib/efl/ffi/eet.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-05-04 23:42:07 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-05-04 23:42:07 +0200
commite4baccaefd209a25daa3ff8d5277fe86aca1d379 (patch)
treeeb2744b7a8624a7538cb0224d40879074c819653 /lib/efl/ffi/eet.rb
parent3974ea1fb3734cbf4150c759eebdf8a93d77dc8b (diff)
downloadffi-efl-e4baccaefd209a25daa3ff8d5277fe86aca1d379.zip
ffi-efl-e4baccaefd209a25daa3ff8d5277fe86aca1d379.tar.gz
FFI are in separate namespaces (Efl::Evas::Native), ruby classes are in upper level (Efl::Evas)seperate-natives
Diffstat (limited to 'lib/efl/ffi/eet.rb')
-rw-r--r--lib/efl/ffi/eet.rb336
1 files changed, 0 insertions, 336 deletions
diff --git a/lib/efl/ffi/eet.rb b/lib/efl/ffi/eet.rb
deleted file mode 100644
index 51b6df1..0000000
--- a/lib/efl/ffi/eet.rb
+++ /dev/null
@@ -1,336 +0,0 @@
-#! /usr/bin/env ruby
-# -*- coding: UTF-8 -*-
-#
-require 'efl/ffi'
-#
-module Efl
- #
- module Eet
- #
- extend Efl::FFIHelper
- #
- def self.method_missing m, *args, &block
- sym = 'eet_'+m.to_s
- raise NameError.new "#{self.name}.#{sym} (#{m})" if not self.respond_to? sym
- self.module_eval "def self.#{m} *args, &block; r=self.#{sym}(*args); yield r if block_given?; r; end"
- self.send sym, *args, &block
- end
- #
- ffi_lib 'eet'
- #
- # ENUMS
- # typedef enum _Eet_Error {...} Eet_Error;
- enum :eet_error, [ :eet_error_none, :eet_error_bad_object, :eet_error_empty, :eet_error_not_writable, :eet_error_out_of_memory,
- :eet_error_write_error, :eet_error_write_error_file_too_big, :eet_error_write_error_io_error, :eet_error_write_error_out_of_space,
- :eet_error_write_error_file_closed, :eet_error_mmap_failed, :eet_error_x509_encoding_failed, :eet_error_signature_failed,
- :eet_error_invalid_signature, :eet_error_not_signed, :eet_error_not_implemented, :eet_error_prng_not_seeded, :eet_error_encrypt_failed,
- :eet_error_decrypt_failed ]
- # typedef enum _Eet_File_Mode {...} Eet_File_Mode;
- enum :eet_file_mode, [ :eet_file_mode_invalid, -1, :eet_file_mode_read, :eet_file_mode_write, :eet_file_mode_read_write ]
- #
- # TYPEDEFS
- # typedef struct _Eet_Version Eet_Version;
- typedef :pointer, :eet_version
- # typedef struct _Eet_File Eet_File;
- typedef :pointer, :eet_file
- typedef :pointer, :eet_file_p
- # typedef struct _Eet_Dictionary Eet_Dictionary;
- typedef :pointer, :eet_dictionary
- typedef :pointer, :eet_dictionary_p
- # typedef struct _Eet_Key Eet_Key;
- typedef :pointer, :eet_key
- typedef :pointer, :eet_key_p
- # typedef struct _Eet_Data_Descriptor Eet_Data_Descriptor;
- typedef :pointer, :eet_data_descriptor
- typedef :pointer, :eet_data_descriptor_p
- # typedef struct _Eet_Data_Descriptor_Class Eet_Data_Descriptor_Class;
- typedef :pointer, :eet_data_descriptor_class
- typedef :pointer, :eet_data_descriptor_class_p
- # typedef struct _Eet_Node Eet_Node;
- typedef :pointer, :eet_node
- typedef :pointer, :eet_node_p
- # typedef struct _Eet_Node_Data Eet_Node_Data;
- typedef :pointer, :eet_node_data
- typedef :pointer, :eet_node_data_p
- # typedef struct _Eet_Node_Walk Eet_Node_Walk;
- typedef :pointer, :eet_node_walk
- typedef :pointer, :eet_node_walk_p
- # typedef struct _Eet_Connection Eet_Connection;
- typedef :pointer, :eet_connection
- typedef :pointer, :eet_connection_p
- #
- # CALLBACKS
- # typedef int (*Eet_Key_Password_Callback) (char *buffer, int size, int rwflag, void *data);
- callback :eet_key_password_callback, [ :string, :int, :int, :void_p ], :int
- # typedef int (*Eet_Descriptor_Hash_Foreach_Callback_Callback) (void *h, const char *k, void *dt, void *fdt);
- callback :eet_descriptor_hash_foreach_callback_callback, [ :void_p, :string, :void_p, :void_p ], :int
- # typedef void *(*Eet_Descriptor_Mem_Alloc_Callback) (size_t size);
- callback :eet_descriptor_mem_alloc_callback, [ :ulong ], :void_p
- # typedef void (*Eet_Descriptor_Mem_Free_Callback) (void *mem);
- callback :eet_descriptor_mem_free_callback, [ :void_p ], :void
- # typedef char *(*Eet_Descriptor_Str_Alloc_Callback) (const char *str);
- callback :eet_descriptor_str_alloc_callback, [ :string ], :string
- # typedef void (*Eet_Descriptor_Str_Free_Callback) (const char *str);
- callback :eet_descriptor_str_free_callback, [ :string ], :void
- # typedef void *(*Eet_Descriptor_List_Next_Callback) (void *l);
- callback :eet_descriptor_list_next_callback, [ :void_p ], :void_p
- # typedef void *(*Eet_Descriptor_List_Append_Callback) (void *l, void *d);
- callback :eet_descriptor_list_append_callback, [ :void_p, :void_p ], :void_p
- # typedef void *(*Eet_Descriptor_List_Data_Callback) (void *l);
- callback :eet_descriptor_list_data_callback, [ :void_p ], :void_p
- # typedef void *(*Eet_Descriptor_List_Free_Callback) (void *l);
- callback :eet_descriptor_list_free_callback, [ :void_p ], :void_p
- # typedef void (*Eet_Descriptor_Hash_Foreach_Callback) (void *h, Eet_Descriptor_Hash_Foreach_Callback_Callback func, void *fdt);
- callback :eet_descriptor_hash_foreach_callback, [ :void_p, :eet_descriptor_hash_foreach_callback_callback, :void_p ], :void
- # typedef void *(*Eet_Descriptor_Hash_Add_Callback) (void *h, const char *k, void *d);
- callback :eet_descriptor_hash_add_callback, [ :void_p, :string, :void_p ], :void_p
- # typedef void (*Eet_Descriptor_Hash_Free_Callback) (void *h);
- callback :eet_descriptor_hash_free_callback, [ :void_p ], :void
- # typedef char *(*Eet_Descriptor_Str_Direct_Alloc_Callback) (const char *str);
- callback :eet_descriptor_str_direct_alloc_callback, [ :string ], :string
- # typedef void (*Eet_Descriptor_Str_Direct_Free_Callback) (const char *str);
- callback :eet_descriptor_str_direct_free_callback, [ :string ], :void
- # typedef const char *(*Eet_Descriptor_Type_Get_Callback) (const void *data, Eina_Bool *unknow);
- callback :eet_descriptor_type_get_callback, [ :void_p, :eina_bool_p ], :string
- # typedef Eina_Bool (*Eet_Descriptor_Type_Set_Callback) (const char *type, void *data, Eina_Bool unknow);
- callback :eet_descriptor_type_set_callback, [ :string, :void_p, :eina_bool ], :eina_bool
- # typedef void *(*Eet_Descriptor_Array_Alloc_Callback) (size_t size);
- callback :eet_descriptor_array_alloc_callback, [ :ulong ], :void_p
- # typedef void (*Eet_Descriptor_Array_Free_Callback) (void *mem);
- callback :eet_descriptor_array_free_callback, [ :void_p ], :void
- # typedef void (*Eet_Dump_Callback) (void *data, const char *str);
- callback :eet_dump_callback, [ :void_p, :string ], :void
- # typedef void *(*Eet_Node_Walk_Struct_Alloc_Callback) (const char *type, void *user_data);
- callback :eet_node_walk_struct_alloc_callback, [ :string, :void_p ], :void_p
- # typedef void (*Eet_Node_Walk_Struct_Add_Callback) (void *parent, const char *name, void *child, void *user_data);
- callback :eet_node_walk_struct_add_callback, [ :void_p, :string, :void_p, :void_p ], :void
- # typedef void *(*Eet_Node_Walk_Array_Callback) (Eina_Bool variable, const char *name, int count, void *user_data);
- callback :eet_node_walk_array_callback, [ :eina_bool, :string, :int, :void_p ], :void_p
- # typedef void (*Eet_Node_Walk_Insert_Callback) (void *array, int index, void *child, void *user_data);
- callback :eet_node_walk_insert_callback, [ :void_p, :int, :void_p, :void_p ], :void
- # typedef void *(*Eet_Node_Walk_List_Callback) (const char *name, void *user_data);
- callback :eet_node_walk_list_callback, [ :string, :void_p ], :void_p
- # typedef void (*Eet_Node_Walk_Append_Callback) (void *list, void *child, void *user_data);
- callback :eet_node_walk_append_callback, [ :void_p, :void_p, :void_p ], :void
- # typedef void *(*Eet_Node_Walk_Hash_Callback) (void *parent, const char *name, const char *key, void *value, void *user_data);
- callback :eet_node_walk_hash_callback, [ :void_p, :string, :string, :void_p, :void_p ], :void_p
- # typedef void *(*Eet_Node_Walk_Simple_Callback) (int type, Eet_Node_Data *data, void *user_data);
- callback :eet_node_walk_simple_callback, [ :int, :eet_node_data_p, :void_p ], :void_p
- # typedef Eina_Bool Eet_Read_Cb (const void *eet_data, size_t size, void *user_data);
- callback :eet_read_cb, [ :void_p, :ulong, :void_p ], :eina_bool
- # typedef Eina_Bool Eet_Write_Cb (const void *data, size_t size, void *user_data);
- callback :eet_write_cb, [ :void_p, :ulong, :void_p ], :eina_bool
- #
- # FUNCTIONS
- fcts = [
- # EAPI extern Eet_Version *eet_version;
- # FIXME
- # EAPI int eet_init(void);
- [ :eet_init, [ ], :int ],
- # EAPI int eet_shutdown(void);
- [ :eet_shutdown, [ ], :int ],
- # EAPI void eet_clearcache(void);
- [ :eet_clearcache, [ ], :void ],
- # EAPI Eet_File * eet_open(const char *file, Eet_File_Mode mode);
- [ :eet_open, [ :string, :eet_file_mode ], :eet_file_p ],
- # EAPI Eet_File * eet_memopen_read(const void *data, size_t size);
- [ :eet_memopen_read, [ :void_p, :ulong ], :eet_file_p ],
- # EAPI Eet_File_Mode eet_mode_get(Eet_File *ef);
- [ :eet_mode_get, [ :eet_file_p ], :eet_file_mode ],
- # EAPI Eet_Error eet_close(Eet_File *ef);
- [ :eet_close, [ :eet_file_p ], :eet_error ],
- # EAPI Eet_Error eet_sync(Eet_File *ef);
- [ :eet_sync, [ :eet_file_p ], :eet_error ],
- # EAPI Eet_Dictionary * eet_dictionary_get(Eet_File *ef);
- [ :eet_dictionary_get, [ :eet_file_p ], :eet_dictionary_p ],
- # EAPI int eet_dictionary_string_check(Eet_Dictionary *ed, const char *string);
- [ :eet_dictionary_string_check, [ :eet_dictionary_p, :string ], :int ],
- # EAPI void * eet_read(Eet_File *ef, const char *name, int *size_ret);
- [ :eet_read, [ :eet_file_p, :string, :int_p ], :void_p ],
- # EAPI const void * eet_read_direct(Eet_File *ef, const char *name, int *size_ret);
- [ :eet_read_direct, [ :eet_file_p, :string, :int_p ], :void_p ],
- # EAPI int eet_write(Eet_File *ef, const char *name, const void *data, int size, int compress);
- [ :eet_write, [ :eet_file_p, :string, :void_p, :int, :int ], :int ],
- # EAPI int eet_delete(Eet_File *ef, const char *name);
- [ :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 char ** eet_list(Eet_File *ef, const char *glob, int *count_ret);
- [ :eet_list, [ :eet_file_p, :string, :int_p ], :string_array ],
- # EAPI int eet_num_entries(Eet_File *ef);
- [ :eet_num_entries, [ :eet_file_p ], :int ],
- # EAPI void * eet_read_cipher(Eet_File *ef, const char *name, int *size_ret, const char *cipher_key);
- [ :eet_read_cipher, [ :eet_file_p, :string, :int_p, :string ], :void_p ],
- # EAPI int eet_write_cipher(Eet_File *ef, const char *name, const void *data, int size, int compress, const char *cipher_key);
- [ :eet_write_cipher, [ :eet_file_p, :string, :void_p, :int, :int, :string ], :int ],
- # EAPI int eet_data_image_header_read(Eet_File *ef, const char *name, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_header_read, [ :eet_file_p, :string, :uint_p, :uint_p, :int_p, :int_p, :int_p, :int_p ], :int ],
- # EAPI void * eet_data_image_read(Eet_File *ef, const char *name, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_read, [ :eet_file_p, :string, :uint_p, :uint_p, :int_p, :int_p, :int_p, :int_p ], :void_p ],
- # EAPI int eet_data_image_read_to_surface(Eet_File *ef, const char *name, unsigned int src_x, unsigned int src_y, unsigned int *d, unsigned int w, unsigned int h, unsigned int row_stride, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_read_to_surface, [ :eet_file_p, :string, :uint, :uint, :uint_p, :uint, :uint, :uint, :int_p, :int_p, :int_p, :int_p ], :int
- ],
- # EAPI int eet_data_image_write(Eet_File *ef, const char *name, const void *data, unsigned int w, unsigned int h, int alpha, int compress, int quality, int lossy);
- [ :eet_data_image_write, [ :eet_file_p, :string, :void_p, :uint, :uint, :int, :int, :int, :int ], :int ],
- # EAPI int eet_data_image_header_decode(const void *data, int size, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_header_decode, [ :void_p, :int, :uint_p, :uint_p, :int_p, :int_p, :int_p, :int_p ], :int ],
- # EAPI void * eet_data_image_decode(const void *data, int size, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_decode, [ :void_p, :int, :uint_p, :uint_p, :int_p, :int_p, :int_p, :int_p ], :void_p ],
- # EAPI int eet_data_image_decode_to_surface(const void *data, int size, unsigned int src_x, unsigned int src_y, unsigned int *d, unsigned int w, unsigned int h, unsigned int row_stride, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_decode_to_surface, [ :void_p, :int, :uint, :uint, :uint_p, :uint, :uint, :uint, :int_p, :int_p, :int_p, :int_p ], :int ],
- # EAPI void * eet_data_image_encode(const void *data, int *size_ret, unsigned int w, unsigned int h, int alpha, int compress, int quality, int lossy);
- [ :eet_data_image_encode, [ :void_p, :int_p, :uint, :uint, :int, :int, :int, :int ], :void_p ],
- # EAPI int eet_data_image_header_read_cipher(Eet_File *ef, const char *name, const char *cipher_key, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_header_read_cipher, [ :eet_file_p, :string, :string, :uint_p, :uint_p, :int_p, :int_p, :int_p, :int_p ], :int ],
- # EAPI void * eet_data_image_read_cipher(Eet_File *ef, const char *name, const char *cipher_key, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_read_cipher, [ :eet_file_p, :string, :string, :uint_p, :uint_p, :int_p, :int_p, :int_p, :int_p ], :void_p ],
- # EAPI int eet_data_image_read_to_surface_cipher(Eet_File *ef, const char *name, const char *cipher_key, unsigned int src_x, unsigned int src_y, unsigned int *d, unsigned int w, unsigned int h, unsigned int row_stride, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_read_to_surface_cipher, [ :eet_file_p, :string, :string, :uint, :uint, :uint_p, :uint, :uint, :uint, :int_p, :int_p, :int_p,
- :int_p ], :int ],
- # EAPI int eet_data_image_write_cipher(Eet_File *ef, const char *name, const char *cipher_key, const void *data, unsigned int w, unsigned int h, int alpha, int compress, int quality, int lossy);
- [ :eet_data_image_write_cipher, [ :eet_file_p, :string, :string, :void_p, :uint, :uint, :int, :int, :int, :int ], :int ],
- # EAPI int eet_data_image_header_decode_cipher(const void *data, const char *cipher_key, int size, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_header_decode_cipher, [ :void_p, :string, :int, :uint_p, :uint_p, :int_p, :int_p, :int_p, :int_p ], :int ],
- # EAPI void * eet_data_image_decode_cipher(const void *data, const char *cipher_key, int size, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_decode_cipher, [ :void_p, :string, :int, :uint_p, :uint_p, :int_p, :int_p, :int_p, :int_p ], :void_p ],
- # EAPI int eet_data_image_decode_to_surface_cipher(const void *data, const char *cipher_key, int size, unsigned int src_x, unsigned int src_y, unsigned int *d, unsigned int w, unsigned int h, unsigned int row_stride, int *alpha, int *compress, int *quality, int *lossy);
- [ :eet_data_image_decode_to_surface_cipher, [ :void_p, :string, :int, :uint, :uint, :uint_p, :uint, :uint, :uint, :int_p, :int_p, :int_p,
- :int_p ], :int ],
- # EAPI void * eet_data_image_encode_cipher(const void *data, const char *cipher_key, unsigned int w, unsigned int h, int alpha, int compress, int quality, int lossy, int *size_ret);
- [ :eet_data_image_encode_cipher, [ :void_p, :string, :uint, :uint, :int, :int, :int, :int, :int_p ], :void_p ],
- # EAPI Eet_Key * eet_identity_open(const char *certificate_file, const char *private_key_file, Eet_Key_Password_Callback cb);
- [ :eet_identity_open, [ :string, :string, :eet_key_password_callback ], :eet_key_p ],
- # EAPI void eet_identity_close(Eet_Key *key);
- [ :eet_identity_close, [ :eet_key_p ], :void ],
- # EAPI Eet_Error eet_identity_set(Eet_File *ef, Eet_Key *key);
- [ :eet_identity_set, [ :eet_file_p, :eet_key_p ], :eet_error ],
- # EAPI void eet_identity_print(Eet_Key *key, FILE *out);
- [ :eet_identity_print, [ :eet_key_p, :pointer ], :void ],
- # EAPI const void * eet_identity_x509(Eet_File *ef, int *der_length);
- [ :eet_identity_x509, [ :eet_file_p, :int_p ], :void_p ],
- # EAPI const void * eet_identity_signature(Eet_File *ef, int *signature_length);
- [ :eet_identity_signature, [ :eet_file_p, :int_p ], :void_p ],
- # EAPI const void * eet_identity_sha1(Eet_File *ef, int *sha1_length);
- [ :eet_identity_sha1, [ :eet_file_p, :int_p ], :void_p ],
- # EAPI void eet_identity_certificate_print(const unsigned char *certificate, int der_length, FILE *out);
- [ :eet_identity_certificate_print, [ :uchar_p, :int, :pointer ], :void ],
- # EAPI Eet_Data_Descriptor * eet_data_descriptor_stream_new(const Eet_Data_Descriptor_Class *eddc);
- [ :eet_data_descriptor_stream_new, [ :eet_data_descriptor_class_p ], :eet_data_descriptor_p ],
- # EAPI Eet_Data_Descriptor * eet_data_descriptor_file_new(const Eet_Data_Descriptor_Class *eddc);
- [ :eet_data_descriptor_file_new, [ :eet_data_descriptor_class_p ], :eet_data_descriptor_p ],
- # EAPI Eina_Bool eet_eina_stream_data_descriptor_class_set(Eet_Data_Descriptor_Class *eddc, unsigned int eddc_size, const char *name, int size);
- # FIXME
- # EAPI Eina_Bool eet_eina_file_data_descriptor_class_set(Eet_Data_Descriptor_Class *eddc, unsigned int eddc_size, const char *name, int size);
- [ :eet_eina_file_data_descriptor_class_set, [ :eet_data_descriptor_class_p, :uint, :string, :int ], :eina_bool ],
- # EAPI void eet_data_descriptor_free(Eet_Data_Descriptor *edd);
- [ :eet_data_descriptor_free, [ :eet_data_descriptor_p ], :void ],
- # EAPI void eet_data_descriptor_element_add(Eet_Data_Descriptor *edd, const char *name, int type, int group_type, int offset, /* int count_offset, */
- # FIXME
- # EAPI void * eet_data_read(Eet_File *ef, Eet_Data_Descriptor *edd, const char *name);
- [ :eet_data_read, [ :eet_file_p, :eet_data_descriptor_p, :string ], :void_p ],
- # EAPI int eet_data_write(Eet_File *ef, Eet_Data_Descriptor *edd, const char *name, const void *data, int compress);
- [ :eet_data_write, [ :eet_file_p, :eet_data_descriptor_p, :string, :void_p, :int ], :int ],
- # EAPI int eet_data_text_dump(const void *data_in, int size_in, Eet_Dump_Callback dumpfunc, void *dumpdata);
- [ :eet_data_text_dump, [ :void_p, :int, :eet_dump_callback, :void_p ], :int ],
- # EAPI void * eet_data_text_undump(const char *text, int textlen, int *size_ret);
- [ :eet_data_text_undump, [ :string, :int, :int_p ], :void_p ],
- # EAPI int eet_data_dump(Eet_File *ef, const char *name, Eet_Dump_Callback dumpfunc, void *dumpdata);
- [ :eet_data_dump, [ :eet_file_p, :string, :eet_dump_callback, :void_p ], :int ],
- # EAPI int eet_data_undump(Eet_File *ef, const char *name, const char *text, int textlen, int compress);
- [ :eet_data_undump, [ :eet_file_p, :string, :string, :int, :int ], :int ],
- # EAPI void * eet_data_descriptor_decode(Eet_Data_Descriptor *edd, const void *data_in, int size_in);
- [ :eet_data_descriptor_decode, [ :eet_data_descriptor_p, :void_p, :int ], :void_p ],
- # EAPI void * eet_data_descriptor_encode(Eet_Data_Descriptor *edd, const void *data_in, int *size_ret);
- [ :eet_data_descriptor_encode, [ :eet_data_descriptor_p, :void_p, :int_p ], :void_p ],
- # EAPI void * eet_data_read_cipher(Eet_File *ef, Eet_Data_Descriptor *edd, const char *name, const char *cipher_key);
- [ :eet_data_read_cipher, [ :eet_file_p, :eet_data_descriptor_p, :string, :string ], :void_p ],
- # EAPI int eet_data_write_cipher(Eet_File *ef, Eet_Data_Descriptor *edd, const char *name, const char *cipher_key, const void *data, int compress);
- [ :eet_data_write_cipher, [ :eet_file_p, :eet_data_descriptor_p, :string, :string, :void_p, :int ], :int ],
- # EAPI int eet_data_text_dump_cipher(const void *data_in, const char *cipher_key, int size_in, Eet_Dump_Callback dumpfunc, void *dumpdata);
- [ :eet_data_text_dump_cipher, [ :void_p, :string, :int, :eet_dump_callback, :void_p ], :int ],
- # EAPI void * eet_data_text_undump_cipher(const char *text, const char *cipher_key, int textlen, int *size_ret);
- [ :eet_data_text_undump_cipher, [ :string, :string, :int, :int_p ], :void_p ],
- # EAPI int eet_data_dump_cipher(Eet_File *ef, const char *name, const char *cipher_key, Eet_Dump_Callback dumpfunc, void *dumpdata);
- [ :eet_data_dump_cipher, [ :eet_file_p, :string, :string, :eet_dump_callback, :void_p ], :int ],
- # EAPI int eet_data_undump_cipher(Eet_File *ef, const char *name, const char *cipher_key, const char *text, int textlen, int compress);
- [ :eet_data_undump_cipher, [ :eet_file_p, :string, :string, :string, :int, :int ], :int ],
- # EAPI void * eet_data_descriptor_decode_cipher(Eet_Data_Descriptor *edd, const void *data_in, const char *cipher_key, int size_in);
- [ :eet_data_descriptor_decode_cipher, [ :eet_data_descriptor_p, :void_p, :string, :int ], :void_p ],
- # EAPI void * eet_data_descriptor_encode_cipher(Eet_Data_Descriptor *edd, const void *data_in, const char *cipher_key, int *size_ret);
- [ :eet_data_descriptor_encode_cipher, [ :eet_data_descriptor_p, :void_p, :string, :int_p ], :void_p ],
- # EAPI Eet_Node * eet_node_char_new(const char *name, char c);
- [ :eet_node_char_new, [ :string, :char ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_short_new(const char *name, short s);
- [ :eet_node_short_new, [ :string, :short ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_int_new(const char *name, int i);
- [ :eet_node_int_new, [ :string, :int ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_long_long_new(const char *name, long long l);
- [ :eet_node_long_long_new, [ :string, :long_long ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_float_new(const char *name, float f);
- [ :eet_node_float_new, [ :string, :float ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_double_new(const char *name, double d);
- [ :eet_node_double_new, [ :string, :double ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_unsigned_char_new(const char *name, unsigned char uc);
- [ :eet_node_unsigned_char_new, [ :string, :uchar ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_unsigned_short_new(const char *name, unsigned short us);
- [ :eet_node_unsigned_short_new, [ :string, :ushort ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_unsigned_int_new(const char *name, unsigned int ui);
- [ :eet_node_unsigned_int_new, [ :string, :uint ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_unsigned_long_long_new(const char *name, unsigned long long l);
- [ :eet_node_unsigned_long_long_new, [ :string, :ulong_long ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_string_new(const char *name, const char *str);
- [ :eet_node_string_new, [ :string, :string ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_inlined_string_new(const char *name, const char *str);
- [ :eet_node_inlined_string_new, [ :string, :string ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_null_new(const char *name);
- [ :eet_node_null_new, [ :string ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_list_new(const char *name, Eina_List *nodes);
- [ :eet_node_list_new, [ :string, :eina_list_p ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_array_new(const char *name, int count, Eina_List *nodes);
- [ :eet_node_array_new, [ :string, :int, :eina_list_p ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_var_array_new(const char *name, Eina_List *nodes);
- [ :eet_node_var_array_new, [ :string, :eina_list_p ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_hash_new(const char *name, const char *key, Eet_Node *node);
- [ :eet_node_hash_new, [ :string, :string, :eet_node_p ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_struct_new(const char *name, Eina_List *nodes);
- [ :eet_node_struct_new, [ :string, :eina_list_p ], :eet_node_p ],
- # EAPI Eet_Node * eet_node_struct_child_new(const char *parent, Eet_Node *child);
- [ :eet_node_struct_child_new, [ :string, :eet_node_p ], :eet_node_p ],
- # EAPI void eet_node_list_append(Eet_Node *parent, const char *name, Eet_Node *child);
- [ :eet_node_list_append, [ :eet_node_p, :string, :eet_node_p ], :void ],
- # EAPI void eet_node_struct_append(Eet_Node *parent, const char *name, Eet_Node *child);
- [ :eet_node_struct_append, [ :eet_node_p, :string, :eet_node_p ], :void ],
- # EAPI void eet_node_hash_add(Eet_Node *parent, const char *name, const char *key, Eet_Node *child);
- [ :eet_node_hash_add, [ :eet_node_p, :string, :string, :eet_node_p ], :void ],
- # EAPI void eet_node_dump(Eet_Node *n, int dumplevel, Eet_Dump_Callback dumpfunc, void *dumpdata);
- [ :eet_node_dump, [ :eet_node_p, :int, :eet_dump_callback, :void_p ], :void ],
- # EAPI void eet_node_del(Eet_Node *n);
- [ :eet_node_del, [ :eet_node_p ], :void ],
- # EAPI void * eet_data_node_encode_cipher(Eet_Node *node, const char *cipher_key, int *size_ret);
- [ :eet_data_node_encode_cipher, [ :eet_node_p, :string, :int_p ], :void_p ],
- # EAPI Eet_Node * eet_data_node_decode_cipher(const void *data_in, const char *cipher_key, int size_in);
- [ :eet_data_node_decode_cipher, [ :void_p, :string, :int ], :eet_node_p ],
- # EAPI Eet_Node * eet_data_node_read_cipher(Eet_File *ef, const char *name, const char *cipher_key);
- [ :eet_data_node_read_cipher, [ :eet_file_p, :string, :string ], :eet_node_p ],
- # EAPI int eet_data_node_write_cipher(Eet_File *ef, const char *name, const char *cipher_key, Eet_Node *node, int compress);
- [ :eet_data_node_write_cipher, [ :eet_file_p, :string, :string, :eet_node_p, :int ], :int ],
- # EAPI void * eet_node_walk(void *parent, const char *name, Eet_Node *root, Eet_Node_Walk *cb, void *user_data);
- [ :eet_node_walk, [ :void_p, :string, :eet_node_p, :eet_node_walk_p, :void_p ], :void_p ],
- # EAPI Eet_Connection * eet_connection_new(Eet_Read_Cb *eet_read_cb, Eet_Write_Cb *eet_write_cb, const void *user_data);
- [ :eet_connection_new, [ :eet_read_cb, :eet_write_cb, :void_p ], :eet_connection_p ],
- # EAPI int eet_connection_received(Eet_Connection *conn, const void *data, size_t size);
- [ :eet_connection_received, [ :eet_connection_p, :void_p, :ulong ], :int ],
- # EAPI Eina_Bool eet_connection_send(Eet_Connection *conn, Eet_Data_Descriptor *edd, const void *data_in, const char *cipher_key);
- [ :eet_connection_send, [ :eet_connection_p, :eet_data_descriptor_p, :void_p, :string ], :eina_bool ],
- # EAPI Eina_Bool eet_connection_node_send(Eet_Connection *conn, Eet_Node *node, const char *cipher_key);
- [ :eet_connection_node_send, [ :eet_connection_p, :eet_node_p, :string ], :eina_bool ],
- # EAPI void * eet_connection_close(Eet_Connection *conn, Eina_Bool *on_going);
- [ :eet_connection_close, [ :eet_connection_p, :eina_bool_p ], :void_p ],
- ]
- #
- attach_fcts fcts
- #
- end
-end
-#
-# EOF