[vlc-devel] commit: libvlc_events: use int instead of uint64_t ( using booleans here might be dangerous with the bindings). ( Rémi Duraffort )

git version control git at videolan.org
Wed Sep 16 18:31:37 CEST 2009


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Wed Sep 16 18:27:51 2009 +0200| [e586841b62b3a7a824f0a83e59ccc2f554c97cd0] | committer: Rémi Duraffort 

libvlc_events: use int instead of uint64_t (using booleans here might be dangerous with the bindings).

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e586841b62b3a7a824f0a83e59ccc2f554c97cd0
---

 include/vlc/libvlc_events.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/vlc/libvlc_events.h b/include/vlc/libvlc_events.h
index 021ad9a..0a9f295 100644
--- a/include/vlc/libvlc_events.h
+++ b/include/vlc/libvlc_events.h
@@ -173,11 +173,11 @@ struct libvlc_event_t
         } media_player_title_changed;
         struct
         {
-            uint64_t new_seekable; /* FIXME: that's a boolean! */
+            int new_seekable;
         } media_player_seekable_changed;
         struct
         {
-            uint64_t new_pausable; /* FIXME: that's a BOOL!!! */
+            int new_pausable;
         } media_player_pausable_changed;
 
         /* media list */
@@ -229,7 +229,7 @@ struct libvlc_event_t
         {
             libvlc_media_t * item;
         } media_list_player_next_item_set;
-        
+
         /* snapshot taken */
         struct
         {




More information about the vlc-devel mailing list