1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

#include order

This commit is contained in:
Rémi Denis-Courmont 2007-09-05 13:51:21 +00:00
parent 5661b194b1
commit 1b67b68abd
4 changed files with 17 additions and 21 deletions

View File

@ -1,4 +1,3 @@
#include <time.h>
/*****************************************************************************
* freetype.c : Put text on the video, using freetype2
*****************************************************************************
@ -28,10 +27,6 @@
* Preamble
*****************************************************************************/
#ifdef HAVE_LINUX_LIMITS_H
# include <linux/limits.h>
#endif
#include <vlc/vlc.h>
#include <vlc_vout.h>
#include <vlc_osd.h>
@ -41,12 +36,14 @@
#include <vlc_xml.h>
#include <vlc_input.h>
#include <math.h>
#ifdef HAVE_ERRNO_H
# include <errno.h>
#ifdef HAVE_LINUX_LIMITS_H
# include <linux/limits.h>
#endif
#include <time.h>
#include <math.h>
#include <errno.h>
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_GLYPH_H

View File

@ -25,17 +25,17 @@
* Preamble
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_charset.h>
#include <errno.h> /* ENOMEM */
#ifdef UNDER_CE
# define _IONBF 0x0004
#endif
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_charset.h>
#define MODE_TEXT 0
#define MODE_HTML 1
#define MODE_SYSLOG 2

View File

@ -24,16 +24,15 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <errno.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libnotify/notify.h>
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_meta.h>
#include <errno.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libnotify/notify.h>
/*****************************************************************************
* Local prototypes
*****************************************************************************/

View File

@ -26,8 +26,6 @@
* Preamble
*****************************************************************************/
#include <errno.h>
#include <vlc/vlc.h>
#include <vlc_input.h>
#include <vlc_sout.h>
@ -40,6 +38,8 @@
#include <vlc_charset.h>
#include <vlc_strings.h>
#include <errno.h>
/*****************************************************************************
* Module descriptor
*****************************************************************************/