mirror of
https://github.com/AxioDL/nod.git
synced 2025-12-08 21:17:51 +00:00
MSVC fixes
This commit is contained in:
@@ -4,6 +4,11 @@
|
||||
#include "NOD/Util.hpp"
|
||||
#include "NOD/IFileIO.hpp"
|
||||
|
||||
#if _WIN32
|
||||
#define ftello _ftelli64
|
||||
#define fseeko _fseeki64
|
||||
#endif
|
||||
|
||||
/* Macros for min/max */
|
||||
#define MIN(a,b) (((a)<(b))?(a):(b))
|
||||
#define MAX(a,b) (((a)>(b))?(a):(b))
|
||||
|
||||
Reference in New Issue
Block a user