Commit 7bcd6db3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

config.h comes first

parent 5caf2f06
...@@ -26,6 +26,10 @@ ...@@ -26,6 +26,10 @@
* Preamble: This file contains the functions related to the creation of * Preamble: This file contains the functions related to the creation of
* a window and the handling of its messages (events). * a window and the handling of its messages (events).
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <errno.h> /* ENOMEM */ #include <errno.h> /* ENOMEM */
#include <ctype.h> /* tolower() */ #include <ctype.h> /* tolower() */
...@@ -33,10 +37,6 @@ ...@@ -33,10 +37,6 @@
# define _WIN32_WINNT 0x0500 # define _WIN32_WINNT 0x0500
#endif #endif
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_interface.h> #include <vlc_interface.h>
#include <vlc_playlist.h> #include <vlc_playlist.h>
......
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