1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

VC2013 compiler compatibility.

This commit is contained in:
jules 2013-07-10 11:08:36 +01:00
parent 02e51c6074
commit 080ff658b9
2 changed files with 0 additions and 4 deletions

View file

@ -47,11 +47,9 @@
#include <sys/stat.h> /* for stat() */
#include <sys/types.h> /* for off_t */
#if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
#if _MSC_VER <= 1700 || defined __BORLANDC__ /* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
#endif
#include "../assert.h"
#include "../alloc.h"
#include "include/protected/stream_decoder.h"

View file

@ -47,11 +47,9 @@
#include <string.h> /* for memcpy() */
#include <sys/types.h> /* for off_t */
#if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
#if _MSC_VER <= 1700 || defined __BORLANDC__ /* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif
#endif
#include "../assert.h"
#include "../alloc.h"
#include "../stream_decoder.h"