mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[8481] Convert some detected files to unix line ends.
This commit is contained in:
parent
cfacd7e696
commit
7837fd93b4
4 changed files with 2377 additions and 2377 deletions
|
|
@ -1,19 +1,19 @@
|
||||||
/* zmemory.c
|
/* zmemory.c
|
||||||
Internal memory alloc and memory free functions
|
Internal memory alloc and memory free functions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
|
|
||||||
#include "zlib.h"
|
#include "zlib.h"
|
||||||
|
|
||||||
const char *z_errmsg[10]; // Needed by zlib
|
const char *z_errmsg[10]; // Needed by zlib
|
||||||
|
|
||||||
voidpf zcalloc(voidpf opaque, uInt items, uInt size)
|
voidpf zcalloc(voidpf opaque, uInt items, uInt size)
|
||||||
{
|
{
|
||||||
return (voidpf)calloc(items, size);
|
return (voidpf)calloc(items, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
void zcfree(voidpf opaque, voidpf address)
|
void zcfree(voidpf opaque, voidpf address)
|
||||||
{
|
{
|
||||||
free(address);
|
free(address);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,47 +1,47 @@
|
||||||
LIBRARY StormLib.dll
|
LIBRARY StormLib.dll
|
||||||
|
|
||||||
EXPORTS
|
EXPORTS
|
||||||
|
|
||||||
SFileSetLocale
|
SFileSetLocale
|
||||||
SFileGetLocale
|
SFileGetLocale
|
||||||
SFileOpenArchive
|
SFileOpenArchive
|
||||||
SFileCloseArchive
|
SFileCloseArchive
|
||||||
|
|
||||||
SFileOpenFileEx
|
SFileOpenFileEx
|
||||||
SFileCloseFile
|
SFileCloseFile
|
||||||
SFileGetFilePos
|
SFileGetFilePos
|
||||||
SFileGetFileSize
|
SFileGetFileSize
|
||||||
SFileSetFilePointer
|
SFileSetFilePointer
|
||||||
SFileReadFile
|
SFileReadFile
|
||||||
SFileExtractFile
|
SFileExtractFile
|
||||||
|
|
||||||
SFileAddListFile
|
SFileAddListFile
|
||||||
|
|
||||||
SFileCreateArchiveEx
|
SFileCreateArchiveEx
|
||||||
|
|
||||||
SFileAddFile
|
SFileAddFile
|
||||||
SFileAddWave
|
SFileAddWave
|
||||||
SFileRemoveFile
|
SFileRemoveFile
|
||||||
SFileRenameFile
|
SFileRenameFile
|
||||||
SFileSetFileLocale
|
SFileSetFileLocale
|
||||||
|
|
||||||
SFileHasFile
|
SFileHasFile
|
||||||
SFileGetFileName
|
SFileGetFileName
|
||||||
SFileGetFileInfo
|
SFileGetFileInfo
|
||||||
|
|
||||||
SFileFindFirstFile
|
SFileFindFirstFile
|
||||||
SFileFindNextFile
|
SFileFindNextFile
|
||||||
SFileFindClose
|
SFileFindClose
|
||||||
|
|
||||||
SListFileFindFirstFile
|
SListFileFindFirstFile
|
||||||
SListFileFindNextFile
|
SListFileFindNextFile
|
||||||
SListFileFindClose
|
SListFileFindClose
|
||||||
|
|
||||||
SFileSetCompactCallback
|
SFileSetCompactCallback
|
||||||
SFileCompactArchive
|
SFileCompactArchive
|
||||||
|
|
||||||
SFileEnumLocales
|
SFileEnumLocales
|
||||||
|
|
||||||
SCompCompress
|
SCompCompress
|
||||||
SCompDecompress
|
SCompDecompress
|
||||||
SCompSetDataCompression
|
SCompSetDataCompression
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8480"
|
#define REVISION_NR "8481"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue