Esempio n. 1
0
 def return_c_type_get(self, ftype):
     s = lib.eolian_function_return_c_type_get(self, ftype)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 2
0
 def c_data_type(self):
     s = lib.eolian_class_c_data_type_get(self)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 3
0
 def c_macro(self):
     s = lib.eolian_event_c_macro_get(self)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 4
0
 def serialize(self):
     s = lib.eolian_expression_serialize(self)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 5
0
 def c_get_function_name(self):
     s = lib.eolian_class_c_get_function_name_get(self)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 6
0
 def c_type(self):
     s = lib.eolian_typedecl_struct_field_c_type_get(self)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 7
0
 def c_constant(self):
     s = lib.eolian_typedecl_enum_field_c_constant_get(self)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 8
0
 def c_type_get(self, as_return=False):
     s = lib.eolian_parameter_c_type_get(self, as_return)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 9
0
 def c_type_get(self, ctype):
     s = lib.eolian_type_c_type_get(self, ctype)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret
Esempio n. 10
0
 def full_c_name_get(self, ftype, use_legacy=False):
     s = lib.eolian_function_full_c_name_get(self, ftype, use_legacy)
     ret = _str_to_py(s)
     lib.eina_stringshare_del(c_void_p(s))
     return ret