diff src/audacious/main.c @ 3753:22d71f986b86

export AudDRCT API.
author William Pitcock <nenolod@atheme.org>
date Sun, 14 Oct 2007 17:47:13 -0500
parents 259b7d3e0976
children 6aaf5476b765
line wrap: on
line diff
--- a/src/audacious/main.c	Sun Oct 14 16:58:43 2007 -0500
+++ b/src/audacious/main.c	Sun Oct 14 17:47:13 2007 -0500
@@ -1184,35 +1184,35 @@
             audacious_remote_activate(session);
     } else {
         if (options->rew)
-            audacious_drct_playlist_prev();
+            drct_pl_prev();
 
         if (options->play)
-            audacious_drct_play();
+            drct_play();
 
         if (options->pause)
-            audacious_drct_pause();
+            drct_pause();
 
         if (options->stop)
-            audacious_drct_stop();
+            drct_stop();
 
         if (options->fwd)
-            audacious_drct_playlist_next();
+            drct_pl_next();
 
         if (options->play_pause) {
-            if (audacious_drct_get_paused())
-                audacious_drct_play();
+            if (drct_get_paused())
+                drct_play();
             else
-                audacious_drct_pause();
+                drct_pause();
         }
 
         if (options->show_jump_box)
-            audacious_drct_show_jtf_box();
+            drct_jtf_show();
 
         if (options->mainwin)
-            audacious_drct_main_win_toggle(TRUE);
+            drct_main_win_toggle(TRUE);
 
         if (options->activate)
-            audacious_drct_activate();
+            drct_activate();
     }
 
     if(remote) {