Commit 1b67b68a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

#include order

parent 5661b194
#include <time.h>
/***************************************************************************** /*****************************************************************************
* freetype.c : Put text on the video, using freetype2 * freetype.c : Put text on the video, using freetype2
***************************************************************************** *****************************************************************************
...@@ -28,10 +27,6 @@ ...@@ -28,10 +27,6 @@
* Preamble * Preamble
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_LINUX_LIMITS_H
# include <linux/limits.h>
#endif
#include <vlc/vlc.h> #include <vlc/vlc.h>
#include <vlc_vout.h> #include <vlc_vout.h>
#include <vlc_osd.h> #include <vlc_osd.h>
...@@ -41,12 +36,14 @@ ...@@ -41,12 +36,14 @@
#include <vlc_xml.h> #include <vlc_xml.h>
#include <vlc_input.h> #include <vlc_input.h>
#include <math.h> #ifdef HAVE_LINUX_LIMITS_H
# include <linux/limits.h>
#ifdef HAVE_ERRNO_H
# include <errno.h>
#endif #endif
#include <time.h>
#include <math.h>
#include <errno.h>
#include <ft2build.h> #include <ft2build.h>
#include FT_FREETYPE_H #include FT_FREETYPE_H
#include FT_GLYPH_H #include FT_GLYPH_H
......
...@@ -25,17 +25,17 @@ ...@@ -25,17 +25,17 @@
* Preamble * Preamble
*****************************************************************************/ *****************************************************************************/
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_charset.h>
#include <errno.h> /* ENOMEM */ #include <errno.h> /* ENOMEM */
#ifdef UNDER_CE #ifdef UNDER_CE
# define _IONBF 0x0004 # define _IONBF 0x0004
#endif #endif
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_charset.h>
#define MODE_TEXT 0 #define MODE_TEXT 0
#define MODE_HTML 1 #define MODE_HTML 1
#define MODE_SYSLOG 2 #define MODE_SYSLOG 2
......
...@@ -24,16 +24,15 @@ ...@@ -24,16 +24,15 @@
/***************************************************************************** /*****************************************************************************
* Preamble * Preamble
*****************************************************************************/ *****************************************************************************/
#include <errno.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libnotify/notify.h>
#include <vlc/vlc.h> #include <vlc/vlc.h>
#include <vlc_interface.h> #include <vlc_interface.h>
#include <vlc_playlist.h> #include <vlc_playlist.h>
#include <vlc_meta.h> #include <vlc_meta.h>
#include <errno.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libnotify/notify.h>
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
*****************************************************************************/ *****************************************************************************/
......
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
* Preamble * Preamble
*****************************************************************************/ *****************************************************************************/
#include <errno.h>
#include <vlc/vlc.h> #include <vlc/vlc.h>
#include <vlc_input.h> #include <vlc_input.h>
#include <vlc_sout.h> #include <vlc_sout.h>
...@@ -40,6 +38,8 @@ ...@@ -40,6 +38,8 @@
#include <vlc_charset.h> #include <vlc_charset.h>
#include <vlc_strings.h> #include <vlc_strings.h>
#include <errno.h>
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment