VC6 project files uptodate, mingl, gl, ded server & sdl targets working (both debug and release), various fixes and hacks to provide VC6 support again. VC6 static libs provided (/libs/vc6-libs), including SDL for the debug SDL target (all old versions though as the updated versions of the libraries have stopped providing VC6 project files to compile them with).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3711 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5ba7b6b41c
commit
714e1f7456
19 changed files with 8779 additions and 84 deletions
|
@ -33,18 +33,20 @@ void *zlib_handle;
|
|||
|
||||
#ifdef _MSC_VER
|
||||
# ifdef _WIN64
|
||||
# pragma comment (lib, "../libs/zlib64.lib")
|
||||
# pragma comment(lib, MSVCLIBSPATH "zlib64.lib")
|
||||
# else
|
||||
# pragma comment (lib, "../libs/zlib.lib")
|
||||
# pragma comment(lib, MSVCLIBSPATH "zlib.lib")
|
||||
# endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#pragma comment(lib, MSVCLIBSPATH "zlib.lib")
|
||||
|
||||
static int (ZEXPORT *qinflateEnd) OF((z_streamp strm)) ZSTATIC(inflateEnd);
|
||||
static int (ZEXPORT *qinflate) OF((z_streamp strm, int flush)) ZSTATIC(inflate);
|
||||
static int (ZEXPORT *qinflateInit2_) OF((z_streamp strm, int windowBits,
|
||||
const char *version, int stream_size)) ZSTATIC(inflateInit2_);
|
||||
static uLong (ZEXPORT *qcrc32) OF((uLong crc, const Bytef *buf, uInt len)) ZSTATIC(crc32);
|
||||
static uLong (ZEXPORT *qcrc32) OF((uLong crc, const Bytef *buf, uInt len)) ZSTATIC(crc32);
|
||||
|
||||
#define qinflateInit2(strm, windowBits) \
|
||||
qinflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue