mingw needs fseeko/ftello redefinitions in lxt_write.h
These redefinitions were in lxt2_write.h, but missing in lxt_write.h. This patch adds them to lxt_write.h.
This commit is contained in:
parent
7290489e1a
commit
b55e3c11dc
|
|
@ -32,6 +32,11 @@
|
|||
#include <zlib.h>
|
||||
#include <bzlib.h>
|
||||
|
||||
#if defined _MSC_VER || defined __MINGW32__
|
||||
#define fseeko fseek
|
||||
#define ftello ftell
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct dslxt_tree_node dslxt_Tree;
|
||||
struct dslxt_tree_node {
|
||||
|
|
|
|||
Loading…
Reference in New Issue