diff navigation.c @ 116:4d711d0518e9 src

new event DVDNAV_WAIT
author mroi
date Tue, 25 Feb 2003 14:08:16 +0000
parents b6834e6359cf
children d09a81cf65ce
line wrap: on
line diff
--- a/navigation.c	Mon Feb 24 18:19:27 2003 +0000
+++ b/navigation.c	Tue Feb 25 14:08:16 2003 +0000
@@ -39,6 +39,20 @@
 
   this->position_current.still = 0;
   this->skip_still = 1;
+  this->sync_wait = 0;
+  this->sync_wait_skip = 1;
+
+  return S_OK;
+}
+
+dvdnav_status_t dvdnav_wait_skip(dvdnav_t *this) {
+  if(!this) {
+    printerr("Passed a NULL pointer.");
+    return S_ERR;
+  }
+
+  this->sync_wait = 0;
+  this->sync_wait_skip = 1;
 
   return S_OK;
 }