Skip to content

Commit

Permalink
Patched to compile with latest Platform SDK.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 19, 2007
1 parent f6c383f commit 6fe37fd
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Expand Up @@ -62,6 +62,11 @@ IF(CMAKE_COMPILER_IS_GNUCC)
ENDIF(PHYSFS_IS_GCC4)
ENDIF(CMAKE_COMPILER_IS_GNUCC)

IF(MSVC)
# VS.NET 8.0 got really really anal about strcpy, etc, which even if we
# cleaned up our code, zlib, etc still use...so disable the warning.
ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS=1)
ENDIF(MSVC)

# Basic chunks of source code ...

Expand Down
15 changes: 8 additions & 7 deletions archivers/lzma.c
Expand Up @@ -86,7 +86,7 @@ typedef struct _LZMAentry
PHYSFS_uint32 fileIndex; /* Index of file in archive */
PHYSFS_uint32 folderIndex; /* Index of folder in archive */
size_t offset; /* Offset in folder */
PHYSFS_uint32 position; /* Current "virtual" position in file */
PHYSFS_uint64 position; /* Current "virtual" position in file */
} LZMAentry;


Expand Down Expand Up @@ -116,13 +116,13 @@ SZ_RESULT SzFileReadImp(void *object, void **buffer, size_t maxReqSize,
size_t *processedSize)
{
CFileInStream *s = (CFileInStream *)object;
size_t processedSizeLoc;
PHYSFS_sint64 processedSizeLoc;
if (maxReqSize > kBufferSize)
maxReqSize = kBufferSize;
processedSizeLoc = __PHYSFS_platformRead(s->File, g_Buffer, 1, maxReqSize);
*buffer = g_Buffer;
if (processedSize != 0)
*processedSize = processedSizeLoc;
if (processedSize != NULL)
*processedSize = (size_t) processedSizeLoc;
return SZ_OK;
} /* SzFileReadImp */

Expand Down Expand Up @@ -313,10 +313,11 @@ static PHYSFS_sint64 LZMA_read(fvoid *opaque, void *outBuffer,
} /* if */

/* Copy wanted bytes over from cache to outBuffer */
strncpy(outBuffer,
/* !!! FIXME: strncpy for non-string data? */
strncpy(outBuffer,
(void*) (entry->archive->folder[entry->folderIndex].cache +
entry->offset + entry->position),
wantedSize);
(size_t) wantedSize);
entry->position += wantedSize;
return objCount;
} /* LZMA_read */
Expand Down Expand Up @@ -465,7 +466,7 @@ static void *LZMA_openArchive(const char *name, int forWriting)
* Init with 0 so we know when a folder is already cached
* Values will be set by LZMA_read()
*/
memset(archive->folder, 0, len);
memset(archive->folder, 0, (size_t) len);

return(archive);
} /* LZMA_openArchive */
Expand Down
5 changes: 3 additions & 2 deletions lzma/7zIn.c
Expand Up @@ -188,8 +188,9 @@ SZ_RESULT SafeReadDirect(ISzInStream *inStream, Byte *data, size_t size)
size -= processedSize;
do
{
*data++ = *(Byte*)inBuffer++;
}
*(data++) = *((Byte*)inBuffer);
inBuffer = ((Byte*) inBuffer) + 1;
}
while (--processedSize != 0);
}
#else
Expand Down
7 changes: 6 additions & 1 deletion physfs_internal.h
Expand Up @@ -24,6 +24,11 @@
#define assert(x)
#endif

/* !!! FIXME: remove this when revamping stack allocation code... */
#ifdef _MSC_VER
#include <malloc.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif
Expand All @@ -32,7 +37,7 @@ extern "C" {
#define malloc(x) Do not use malloc() directly.
#define realloc(x, y) Do not use realloc() directly.
#define free(x) Do not use free() directly.

/* !!! FIXME: add alloca check here. */

/* The LANG section. */
/* please send questions/translations to Ryan: icculus@icculus.org. */
Expand Down
10 changes: 6 additions & 4 deletions platform/windows.c
Expand Up @@ -21,10 +21,12 @@

#include "physfs_internal.h"

#if (defined _MSC_VER)
#define alloca(x) _alloca(x)
#elif (defined __MINGW32__) /* scary...hopefully this is okay. */
#define alloca(x) __builtin_alloca(x)
#if (!defined alloca)
#if ((defined _MSC_VER)
#define alloca(x) _alloca(x)
#elif (defined __MINGW32__) /* scary...hopefully this is okay. */
#define alloca(x) __builtin_alloca(x)
#endif
#endif

#define LOWORDER_UINT64(pos) (PHYSFS_uint32) \
Expand Down

0 comments on commit 6fe37fd

Please sign in to comment.