pkgsrc/games/scummvm/patches/patch-ac
adam c9faabc4f1 Changes 0.11.0:
New Games:
- Added support for Elvira: Mistress of the Dark.
- Added support for Elvira 2: The Jaws of Cerberus.
- Added support for I Have no Mouth, and I Must Scream (demo and full game).
- Added support for preAGI game Mickey's Space Adventure.
- Added support for preAGI game Troll's Tale.
- Added support for preAGI game Winnie the Pooh in the Hundred Acre Wood.
- Added support for Amiga version of Waxworks.
- Added support for Lure of the Temptress.
General:
- Added ARM assembly routines for code in the sound mixer and SCUMM
  video playback, resulting in some nice speedups on several ports.
- Improved the way keyboard input is handled internally, resolving
  some odd quirks in some game / port combinations.
- Added optional 'confirm exit' dialog to the SDL backend.
- Added support for TiMidity++ MIDI server.
- Added DMedia MIDI driver for IRIX.
- Improved detection of new game variants and localized versions.
- Completely reworked internal access to files. (GSoC Task)
- Added option to delete games from the list with Del key.
- Added support for "~/" prefix being substituted by $HOME in paths
  on POSIX systems (Linux, Mac OS X etc.).
2008-01-17 21:22:35 +00:00

150 lines
5.2 KiB
Text

$NetBSD: patch-ac,v 1.5 2008/01/17 21:22:35 adam Exp $
--- common/unzip.h.orig 2008-01-13 00:08:46.000000000 +0100
+++ common/unzip.h
@@ -141,9 +141,9 @@ typedef struct unz_file_info_s
tm_unz tmu_date;
} unz_file_info;
-extern int ZEXPORT unzStringFileNameCompare OF ((const char* fileName1,
+extern int unzStringFileNameCompare (const char* fileName1,
const char* fileName2,
- int iCaseSensitivity));
+ int iCaseSensitivity);
/*
Compare two filename (fileName1,fileName2).
If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
@@ -154,7 +154,7 @@ extern int ZEXPORT unzStringFileNameComp
*/
-extern unzFile ZEXPORT unzOpen OF((const char *path));
+extern unzFile unzOpen (const char *path);
/*
Open a Zip file. path contain the full pathname (by example,
on a Windows NT computer "c:\\zlib\\zlib111.zip" or on an Unix computer
@@ -165,24 +165,24 @@ extern unzFile ZEXPORT unzOpen OF((const
of this unzip package.
*/
-extern int ZEXPORT unzClose OF((unzFile file));
+extern int unzClose (unzFile file);
/*
Close a ZipFile opened with unzipOpen.
If there is files inside the .Zip opened with unzOpenCurrentFile (see later),
these files MUST be closed with unzipCloseCurrentFile before call unzipClose.
return UNZ_OK if there is no problem. */
-extern int ZEXPORT unzGetGlobalInfo OF((unzFile file,
- unz_global_info *pglobal_info));
+extern int unzGetGlobalInfo (unzFile file,
+ unz_global_info *pglobal_info);
/*
Write info about the ZipFile in the *pglobal_info structure.
No preparation of the structure is needed
return UNZ_OK if there is no problem. */
-extern int ZEXPORT unzGetGlobalComment OF((unzFile file,
+extern int unzGetGlobalComment (unzFile file,
char *szComment,
- uLong uSizeBuf));
+ uLong uSizeBuf);
/*
Get the global comment string of the ZipFile, in the szComment buffer.
uSizeBuf is the size of the szComment buffer.
@@ -193,22 +193,22 @@ extern int ZEXPORT unzGetGlobalComment O
/***************************************************************************/
/* Unzip package allow you browse the directory of the zipfile */
-extern int ZEXPORT unzGoToFirstFile OF((unzFile file));
+extern int unzGoToFirstFile (unzFile file);
/*
Set the current file of the zipfile to the first file.
return UNZ_OK if there is no problem
*/
-extern int ZEXPORT unzGoToNextFile OF((unzFile file));
+extern int unzGoToNextFile (unzFile file);
/*
Set the current file of the zipfile to the next file.
return UNZ_OK if there is no problem
return UNZ_END_OF_LIST_OF_FILE if the actual file was the latest.
*/
-extern int ZEXPORT unzLocateFile OF((unzFile file,
+extern int unzLocateFile (unzFile file,
const char *szFileName,
- int iCaseSensitivity));
+ int iCaseSensitivity);
/*
Try locate the file szFileName in the zipfile.
For the iCaseSensitivity signification, see unzStringFileNameCompare
@@ -219,14 +219,14 @@ extern int ZEXPORT unzLocateFile OF((unz
*/
-extern int ZEXPORT unzGetCurrentFileInfo OF((unzFile file,
+extern int unzGetCurrentFileInfo (unzFile file,
unz_file_info *pfile_info,
char *szFileName,
uLong fileNameBufferSize,
void *extraField,
uLong extraFieldBufferSize,
char *szComment,
- uLong commentBufferSize));
+ uLong commentBufferSize);
/*
Get Info about the current file
if pfile_info!=NULL, the *pfile_info structure will contain somes info about
@@ -245,22 +245,22 @@ extern int ZEXPORT unzGetCurrentFileInfo
from it, and close it (you can close it before reading all the file)
*/
-extern int ZEXPORT unzOpenCurrentFile OF((unzFile file));
+extern int unzOpenCurrentFile (unzFile file);
/*
Open for reading data the current file in the zipfile.
If there is no error, the return value is UNZ_OK.
*/
-extern int ZEXPORT unzCloseCurrentFile OF((unzFile file));
+extern int unzCloseCurrentFile (unzFile file);
/*
Close the file in zip opened with unzOpenCurrentFile
Return UNZ_CRCERROR if all the file was read but the CRC is not good
*/
-extern int ZEXPORT unzReadCurrentFile OF((unzFile file,
+extern int unzReadCurrentFile (unzFile file,
voidp buf,
- unsigned len));
+ unsigned len);
/*
Read bytes from the current file (opened by unzOpenCurrentFile)
buf contain buffer where data must be copied
@@ -272,19 +272,19 @@ extern int ZEXPORT unzReadCurrentFile OF
(UNZ_ERRNO for IO error, or zLib error for uncompress error)
*/
-extern z_off_t ZEXPORT unztell OF((unzFile file));
+extern z_off_t unztell (unzFile file);
/*
Give the current position in uncompressed data
*/
-extern int ZEXPORT unzeof OF((unzFile file));
+extern int unzeof (unzFile file);
/*
return 1 if the end of file was reached, 0 elsewhere
*/
-extern int ZEXPORT unzGetLocalExtrafield OF((unzFile file,
+extern int unzGetLocalExtrafield (unzFile file,
voidp buf,
- unsigned len));
+ unsigned len);
/*
Read extra field from the current file (opened by unzOpenCurrentFile)
This is the local-header version of the extra field (sometimes, there is