diff gui/win32/playlist.h @ 33854:e2e7d9d88063

win32 gui: replace C99 bool type by int int is used in all other places for boolean arguments.
author diego
date Sat, 30 Jul 2011 15:36:37 +0000
parents 844786b8f768
children 92e53547406d
line wrap: on
line diff
--- a/gui/win32/playlist.h	Sat Jul 30 14:04:49 2011 +0000
+++ b/gui/win32/playlist.h	Sat Jul 30 15:36:37 2011 +0000
@@ -24,8 +24,6 @@
 #ifndef MPLAYER_GUI_PLAYLIST_H
 #define MPLAYER_GUI_PLAYLIST_H
 
-#include <stdbool.h>
-
 typedef struct
 {
     char *filename;
@@ -56,6 +54,6 @@
 #define SORT_BYDURATION     4
 
 playlist_t *create_playlist(void);
-bool adddirtoplaylist(playlist_t *playlist, const char* path, bool recursive);
+int adddirtoplaylist(playlist_t *playlist, const char* path, int recursive);
 
 #endif /* MPLAYER_GUI_PLAYLIST_H */