Commit acaff8c8 authored by Damien Fouilleul's avatar Damien Fouilleul

it is good pratice to specify headers that define custom types

parent af91d7b5
......@@ -9,6 +9,15 @@
# ifdef HAVE_SHARED_LIBVLC
# error You are not supposed to include this file!
# endif
#include <stdio.h> /* for FILE typedef */
#ifdef HAVE_DIRENT_H
# include <dirent.h> /* for DIR typedef */
#else
typedef void DIR;
#endif
/*
* This is the big VLC API structure for plugins :
* Changing its layout breaks plugin's binary compatibility,
......
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