]> git.sesse.net Git - vlc/blobdiff - modules/gui/pda/pda.h
configure: Set the proper werror variable when creating vlc-config.in
[vlc] / modules / gui / pda / pda.h
index e8ff65ba923cab83965e175296bc50c44abe90a2..5aa228b1f8b1d397354620f0804d544453192d67 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * pda.h: private Gtk+ interface description
  *****************************************************************************
- * Copyright (C) 1999, 2000 VideoLAN
- * $Id: pda.h,v 1.4 2003/11/07 13:01:51 jpsaman Exp $
+ * Copyright (C) 1999, 2000 the VideoLAN team
+ * $Id$
  *
- * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
+ * Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #define MAX_ATEXIT                 10
@@ -33,12 +33,10 @@ struct intf_sys_t
 
     /* windows and widgets */
     GtkWidget          *p_window;                             /* main window */
-    GtkEntry           *p_mrlentry;
     GtkNotebook        *p_notebook;
     GtkHScale          *p_slider;
     GtkTreeView        *p_tvfile;
     GtkTreeView        *p_tvplaylist;
-    GtkListStore       *p_playlist;                      /* Playlist widget  */
 
     /* slider */
     GtkLabel *          p_slider_label;
@@ -47,12 +45,12 @@ struct intf_sys_t
     float               f_adj_oldvalue;  /* previous value -with FPU hardware*/
 
     /* special actions */
-    vlc_bool_t          b_playing;
-    vlc_bool_t          b_window_changed;        /* window display toggled ? */
-    vlc_bool_t          b_slider_free;                      /* slider status */
+    bool          b_playing;
+    bool          b_window_changed;        /* window display toggled ? */
+    bool          b_slider_free;                      /* slider status */
 
     /* Preference settings */
-    vlc_bool_t          b_autoplayfile;
+    bool          b_autoplayfile;
 
     /* The input thread */
     input_thread_t *    p_input;
@@ -64,6 +62,6 @@ struct intf_sys_t
 #define GTK_GET( type, nom ) GTK_##type( gtk_object_get_data( \
         GTK_OBJECT( p_intf->p_sys->p_window ), nom ) )
 
-            
-#define  GtkGetIntf( widget ) E_(__GtkGetIntf)( GTK_WIDGET( widget ) )
-void * E_(__GtkGetIntf)( GtkWidget * );
+#define  GtkGetIntf( widget ) __GtkGetIntf( GTK_WIDGET( widget ) )
+void * __GtkGetIntf( GtkWidget * );