q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=a8f240e10de98122c2d5f3f0ce3d63c6386a70e9

commit a8f240e10de98122c2d5f3f0ce3d63c6386a70e9
Author: Daniel Kolesa <[email protected]>
Date:   Fri Nov 4 17:14:30 2016 +0100

    ecore_audio, eio eo: remove pointers
---
 src/lib/ecore_audio/ecore_audio.eo | 2 +-
 src/lib/eio/efl_io_manager.eo      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/ecore_audio/ecore_audio.eo 
b/src/lib/ecore_audio/ecore_audio.eo
index 7436b58..a80a4c9 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 0b0724c..d0ac5c5 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<uint64>;
@@ -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<int>;

-- 


Reply via email to