diff --git a/src/lib/ecore_audio/ecore_audio.eo b/src/lib/ecore_audio/ecore_audio.eo index 7436b5853c..a80a4c94e9 100644 --- a/src/lib/ecore_audio/ecore_audio.eo +++ b/src/lib/ecore_audio/ecore_audio.eo @@ -109,7 +109,7 @@ class Ecore.Audio (Efl.Object) @since 1.8 ]] params { - vio: Ecore.Audio.Vio *; [[the @Ecore.Audio.Vio struct with + vio: ptr(Ecore.Audio.Vio); [[the @Ecore.Audio.Vio struct with the function callbacks ]] data: void_ptr; [[user data to pass to the VIO functions]] diff --git a/src/lib/eio/efl_io_manager.eo b/src/lib/eio/efl_io_manager.eo index 0b0724cc84..d0ac5c56aa 100644 --- a/src/lib/eio/efl_io_manager.eo +++ b/src/lib/eio/efl_io_manager.eo @@ -60,7 +60,7 @@ class Efl.Io.Manager (Efl.Loop_User) [[Retrieves or sets information of a given extended attribute.]] set { values { - data: Eina.Binbuf *; + data: ptr(Eina.Binbuf); flags: Eina.Xattr.Flags; } return: future; @@ -88,7 +88,7 @@ class Efl.Io.Manager (Efl.Loop_User) close { [[Closes an open Eina.File.]] params { - @in file: Eina.File*; + @in file: ptr(Eina.File); // Here we're just interested whether the promise was fullfilled or not. No value needed. } return: future;