Fix 2 header bugs introduced by nplourde's previous commit:

#include "loader/qtx/qtxsdk/components.h" needs inttypes.h which was no
more implicitly included by earlier headers, and "#ifdef MACOSX" was 
used before '#include "config.h"'.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21370 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
uau 2006-11-28 23:53:07 +00:00
parent cf332d16c2
commit 11d2b91f23
1 changed files with 3 additions and 1 deletions

View File

@ -21,6 +21,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <inttypes.h>
#include "config.h"
#ifdef MACOSX
#include <QuickTime/QuickTime.h>
@ -30,7 +33,6 @@
#include "loader/qtx/qtxsdk/components.h"
#endif
#include "config.h"
#include "mp_msg.h"
#include "help_mp.h"