mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 15:52:25 +00:00
Mingw compile fix, hm doesn't the inttypes solution always work?
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14300 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
eca47b1a5e
commit
8b803d1fd9
@ -41,12 +41,12 @@
|
|||||||
typedef unsigned __int32 ogg_uint32_t;
|
typedef unsigned __int32 ogg_uint32_t;
|
||||||
typedef __int16 ogg_int16_t;
|
typedef __int16 ogg_int16_t;
|
||||||
# else
|
# else
|
||||||
/* Cygwin */
|
/* Cygwin/MinGW */
|
||||||
#include <_G_config.h>
|
#include <inttypes.h>
|
||||||
typedef _G_int64_t ogg_int64_t;
|
typedef int64_t ogg_int64_t;
|
||||||
typedef _G_int32_t ogg_int32_t;
|
typedef int32_t ogg_int32_t;
|
||||||
typedef _G_uint32_t ogg_uint32_t;
|
typedef uint32_t ogg_uint32_t;
|
||||||
typedef _G_int16_t ogg_int16_t;
|
typedef int16_t ogg_int16_t;
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
#elif defined(__MACOS__)
|
#elif defined(__MACOS__)
|
||||||
|
Loading…
Reference in New Issue
Block a user