aboutsummaryrefslogtreecommitdiff
path: root/contrib/extractor/libmpq/common.h
diff options
context:
space:
mode:
authorKingPin <none@none>2008-11-05 09:22:56 -0600
committerKingPin <none@none>2008-11-05 09:22:56 -0600
commit62ed044d08425bd09053bda18d56113bd9f9a2ce (patch)
tree28ed72b77f24d88b47df4f1b3ec3f20582b2c18f /contrib/extractor/libmpq/common.h
parenta1981ecc77c3da12cdec29c30a1a79a1011333f0 (diff)
[svn] *** Source Mangos ***
*Load npc_options at server startup, use cached data at creature gossip menu init. * Also new .reload table command added *Implement npc_option localization support, also store in DB BoxText/BoxMoney/Coded * Use characters.guid instead low guid value from characters.data in charcter enum data prepering for client. * Fixed crash at .pinfo command use from console. * Fixed windows ad.exe build *Creature related code and DB cleanups. * Rename 2 creature_template fields to more clean names and related code update also. * Use enum values instead raw values for type_flags, use halper functions instead code repeating. * Move tamed pet creating code to new function. ** Small code changes to make things compliant with above changes. ** Another rev with big changes so test away. --HG-- branch : trunk
Diffstat (limited to 'contrib/extractor/libmpq/common.h')
-rw-r--r--contrib/extractor/libmpq/common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/extractor/libmpq/common.h b/contrib/extractor/libmpq/common.h
index ad2c0f101fa..5794c162e10 100644
--- a/contrib/extractor/libmpq/common.h
+++ b/contrib/extractor/libmpq/common.h
@@ -49,6 +49,12 @@
#include <io.h>
#endif
+#ifdef O_LARGEFILE
+ #define MPQ_FILE_OPEN_FLAGS (O_RDONLY | O_BINARY | O_LARGEFILE)
+#else
+ #define MPQ_FILE_OPEN_FLAGS (O_RDONLY | O_BINARY)
+#endif
+
#ifndef min
#define min(a, b) ((a < b) ? a : b)
#endif