paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui/src/physfs physfs.spec.in,NONE,1.1.2.1 CHANGE


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/src/physfs physfs.spec.in,NONE,1.1.2.1 CHANGELOG,1.1.1.1.6.6,1.1.1.1.6.7 CREDITS,1.1.2.2,1.1.2.3 Makefile.am,1.1.1.1.6.7,1.1.1.1.6.8 TODO,1.1.1.1.6.4,1.1.1.1.6.5 configure.in,1.1.2.8,1.1.2.9 physfs.c,1.1.1.1.6.5,1.1.1.1.6.6 physfs.h,1.1.1.1.6.3,1.1.1.1.6.4 physfs_internal.h,1.1.1.1.6.5,1.1.1.1.6.6
Date: Tue, 30 Jul 2002 16:50:29 -0400

Update of /cvsroot/paragui/paragui/src/physfs
In directory subversions:/tmp/cvs-serv15063/src/physfs

Modified Files:
      Tag: devel-1-0
        CHANGELOG CREDITS Makefile.am TODO configure.in physfs.c 
        physfs.h physfs_internal.h 
Added Files:
      Tag: devel-1-0
        physfs.spec.in 
Log Message:
physfs sync
memleaks fixed
fixed callbacks within modal loops



--- NEW FILE ---
%define version @VERSION@
%define release 1
%define name physfs
%define prefix  /usr

Summary:        PhysicsFS file abstraction layer for games
Name:           %{name}
Version:        %{version}
Release:        %{release}
Prefix:         %{prefix}
Copyright:      GNU Lesser General Public License (LGPL)
Group:          System Environment/Libraries
URL:            http://www.icculus/physfs/
Source:         physfs-%{version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}
BuildRequires: doxygen, readline-devel, ncurses-devel
Requires: readline, ncurses, zlib

%description
PhysicsFS is a library to provide abstract access to various archives.
It is intended for use in video games, and the design was somewhat inspired
by Quake 3's file subsystem. The programmer defines a "write directory" on
the physical filesystem. No file writing done through the PhysicsFS API can
leave that write directory, for security. For example, an embedded scripting
language cannot write outside of this path if it uses PhysFS for all of its
I/O, which means that untrusted scripts can run more safely. Symbolic links
can be disabled as well, for added safety. For file reading, the programmer
lists directories and archives that form a "search path". Once the search
path is defined, it becomes a single, transparent hierarchical filesystem.
This makes for easy access to ZIP files in the same way as you access a file
directly on the disk, and it makes it easy to ship a new archive that will
override a previous archive on a per-file basis. Finally, PhysicsFS gives
you platform-abstracted means to determine if CD-ROMs are available, the
user's home directory, where in the real filesystem your program is running,
etc. 

%package devel
Summary: Development headers, libraries, and documentation for PhysicsFS
Group: Development/Libraries
Requires: %{name} = %{version}

%description devel
PhysicsFS is a library to provide abstract access to various archives.
This package contains the development headers, libraries, and documentaion to
build programs using PhysicsFS.

%prep
%setup
export CFLAGS="${RPM_OPT_FLAGS}" CXXFLAGS="${RPM_OPT_FLAGS}";
./configure --prefix=/usr

%build
export CFLAGS="${RPM_OPT_FLAGS}" CXXFLAGS="${RPM_OPT_FLAGS}";
make
# Make doxygen docs
doxygen

%install
[ -d ${RPM_BUILD_ROOT} ] && rm -rf ${RPM_BUILD_ROOT}
make DESTDIR=${RPM_BUILD_ROOT} install

%clean
[ -d ${RPM_BUILD_ROOT} ] && rm -rf ${RPM_BUILD_ROOT}

%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig

%files
%defattr(-,root,root)
%doc CHANGELOG CREDITS INSTALL LICENSE TODO
%{_bindir}/test_physfs
%{_libdir}/*so.*

%files devel
%defattr(-,root,root)
%doc docs/*
%{_libdir}/*.so
%{_includedir}/physfs.h

%changelog
* Wed Jul 10 2002 Edward Rudd <address@hidden>
- added doxygen to build requirements

* Wed Jul 10 2002 Edward Rudd <address@hidden>
- updated to release 0.17

* Tue May 15 2002 Edward Rudd <address@hidden>
- updated to latest CVS and modified spec file to use 
  the autoconf/automake support in the latest CVS

* Tue Apr 30 2002 Edward Rudd <address@hidden>
- Initial spec file

Index: CHANGELOG
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/CHANGELOG,v
retrieving revision 1.1.1.1.6.6
retrieving revision 1.1.1.1.6.7
diff -C2 -r1.1.1.1.6.6 -r1.1.1.1.6.7
*** CHANGELOG   25 Jul 2002 07:27:37 -0000      1.1.1.1.6.6
--- CHANGELOG   30 Jul 2002 20:50:27 -0000      1.1.1.1.6.7
***************
*** 3,6 ****
--- 3,31 ----
   */
  
+ 07292002 - Found some memory leaks, thanks to Valgrind (which rules, btw).
+            Added Russian translations (koi8-r, cp1251, cp866, and iso-8859-5)
+            by Ed Sinjiashvili. Added Spanish translation by Pedro J. Pérez.
+            Debian package support in CVS, thanks to Colin Bayer. French
+            translation by Stéphane Peter.
+ 07282002 - macclassic.c now returns human readable error messages instead of
+            ERR_OS_ERROR. Closing files on MacOS no longer fails if the volume
+            info can't be flushed. Minor error message tweak in os2.c. All
+            possible human-readable literal strings (including all those OS/2
+            and MacOS error messages) have moved to constants in
+            physfs_internal.h...this allows the library to be translated to
+            other spoken languages fairly easily.
+ 07272002 - Patched the OS/2 code to be useful...works pretty well, now. Added
+            makeos2.cmd for building (not an ideal solution, but oh well).
+            Initialized some variables in zip.c to prevent compiler whining.
+ 07262002 - Fixed a typo in documentation. Archivers with matching file
+            extensions are now given first shot at opening an archive, but if
+            they fail, the other archivers are tried. More fixes to zip.c's
+            ZIP_enumerateFiles(). Wrote an OS/2 platform driver based on API
+            specs and a heavy pounding of Google Groups...as I don't have an
+            OS/2 compiler at the moment, it probably doesn't even compile.  :)
+ 07252002 - configure.in and unix.c now deal with platforms that lack a
+            functional pthread library. Edward Rudd sent in a patch to the RPM
+            specfile to have the build system set the correct version.
+            Clean ups in grp.c, beos.cpp and macclassic.c.
  07242002 - Rewrote ZIP_enumerate(). Hopefully it sucks less this time.
             unix.c and configure.in now have the infrastructure to disable

Index: CREDITS
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/CREDITS,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -r1.1.2.2 -r1.1.2.3
*** CREDITS     11 Jul 2002 08:59:29 -0000      1.1.2.2
--- CREDITS     30 Jul 2002 20:50:27 -0000      1.1.2.3
***************
*** 6,9 ****
--- 6,10 ----
  BeOS support,
  POSIX support,
+ OS/2 support,
  ZIP driver,
  MacOS Classic support:
***************
*** 34,37 ****
--- 35,50 ----
  Various support, fixes and suggestions,
      Alexander Pipelka
+ 
+ Russian translation:
+     Ed Sinjiashvili
+ 
+ Spanish translation:
+     Pedro J. Pérez
+ 
+ French translation:
+     Stéphane Peter
+ 
+ Debian package support:
+     Colin Bayer
  
  Other stuff:

Index: Makefile.am
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/Makefile.am,v
retrieving revision 1.1.1.1.6.7
retrieving revision 1.1.1.1.6.8
diff -C2 -r1.1.1.1.6.7 -r1.1.1.1.6.8
*** Makefile.am 3 Jul 2002 14:30:10 -0000       1.1.1.1.6.7
--- Makefile.am 30 Jul 2002 20:50:27 -0000      1.1.1.1.6.8
***************
*** 33,37 ****
        physfs.dsp \
        test_physfs.dsp \
!       physfs.h
  
  dist-hook:
--- 33,38 ----
        physfs.dsp \
        test_physfs.dsp \
!       physfs.h \
!       physfs.spec.in
  
  dist-hook:

Index: TODO
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/TODO,v
retrieving revision 1.1.1.1.6.4
retrieving revision 1.1.1.1.6.5
diff -C2 -r1.1.1.1.6.4 -r1.1.1.1.6.5
*** TODO        25 Jul 2002 07:27:38 -0000      1.1.1.1.6.4
--- TODO        30 Jul 2002 20:50:27 -0000      1.1.1.1.6.5
***************
*** 5,10 ****
  
  - Include the Visual Studio.NET project file in CVS directly.
- - Favor archivers that have the same extension as an archive when opening.
- - Deal with Unix platforms without POSIX threads (NetBSD, etc).
  - Other archivers: perhaps tar(.gz|.bz2), RPM, ARJ, etc. These are less
    important, since streaming archives aren't of much value to games (which
--- 5,8 ----
***************
*** 14,22 ****
    nice for an email program. That's blue sky, unless someone wants to tackle
    it.
  - Platforms to be verified as working: Solaris, WinNT 3.1, WinME, WinXP,
    MacOS 8.1
! - Platforms to port to: NetBSD (needs pthreads), OS/2 (needs platform driver),
!   PocketPC (Maybe can just use win32.c?), Amiga (needs platform driver),
!   AtheOS (needs platform driver, maybe can use unix.c and posix.c?)
  - Use __cdecl in physfs.h?
  - Look for FIXMEs (many marked with "!!!" in comments).
--- 12,23 ----
    nice for an email program. That's blue sky, unless someone wants to tackle
    it.
+ - Need PHYSFS_LANG_FRENCH, PHYSFS_LANG_SPANISH, and PHYSFS_LANG_GERMAN.
+ - Figure out that pesky pthread casting problem.
+ - macclassic.c :
+   "/* (Hmm. Default behaviour is broken in the base library.  :)  )  */"
  - Platforms to be verified as working: Solaris, WinNT 3.1, WinME, WinXP,
    MacOS 8.1
! - Platforms to port to: PocketPC (Maybe can just use win32.c?),
!   Amiga (needs platform driver).
  - Use __cdecl in physfs.h?
  - Look for FIXMEs (many marked with "!!!" in comments).

Index: configure.in
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/configure.in,v
retrieving revision 1.1.2.8
retrieving revision 1.1.2.9
diff -C2 -r1.1.2.8 -r1.1.2.9
*** configure.in        25 Jul 2002 07:27:38 -0000      1.1.2.8
--- configure.in        30 Jul 2002 20:50:27 -0000      1.1.2.9
***************
*** 196,199 ****
--- 196,210 ----
  
  
+ dnl determine if we should use the stubbed pthread code.
+ AC_ARG_ENABLE(pthreads,
+ [  --enable-pthreads          include POSIX threads support [default=yes]],
+               , enable_pthreads=yes)
+ if test x$enable_pthreads = xyes; then
+   AC_CHECK_HEADER(pthread.h, have_pthread_hdr=yes)
+   if test x$have_pthread_hdr != xyes; then
+     enable_pthreads=no
+   fi
+ fi
+ 
  dnl determine if we should use the stubbed CD-ROM detection code.
  AC_ARG_ENABLE(cdrom,
***************
*** 219,226 ****
  fi
  
! dnl AC_CHECK_HEADER(be/kernel/OS.h, this_is_beos=yes)
  AC_MSG_CHECKING([if this is BeOS])
  if test x$build_os = xbeos; then
    this_is_beos=yes
    LIBS="$LIBS -lroot -lbe"
  else
--- 230,310 ----
  fi
  
! dnl determine language.
! physfslang=english
! AC_ARG_ENABLE(language,
! [  --enable-language=lang     Select natural language. [default=english]],
!               physfslang=`echo $enable_language |tr A-Z a-z`)
! 
! AC_MSG_CHECKING([if language choice is supported])
! physfs_valid_lang=no
! 
! if test x$physfslang = xenglish; then
!   physfs_valid_lang=yes
!   AC_DEFINE([PHYSFS_LANG], PHYSFS_LANG_ENGLISH, [define desired natural 
language])
! fi
! 
! if test x$physfslang = xrussian-koi8-r; then
!   physfs_valid_lang=yes
!   AC_DEFINE([PHYSFS_LANG], PHYSFS_LANG_RUSSIAN_KOI8_R, [define desired 
natural language])
! fi
! 
! if test x$physfslang = xrussian-cp1251; then
!   physfs_valid_lang=yes
!   AC_DEFINE([PHYSFS_LANG], PHYSFS_LANG_RUSSIAN_CP866, [define desired natural 
language])
! fi
! 
! if test x$physfslang = xrussian-cp866; then
!   physfs_valid_lang=yes
!   AC_DEFINE([PHYSFS_LANG], PHYSFS_LANG_RUSSIAN_CP866, [define desired natural 
language])
! fi
! 
! if test x$physfslang = xrussian-iso-8859-5; then
!   physfs_valid_lang=yes
!   AC_DEFINE([PHYSFS_LANG], PHYSFS_LANG_RUSSIAN_ISO_8859_5, [define desired 
natural language])
! fi
! 
! if test x$physfslang = xspanish; then
!   physfs_valid_lang=yes
!   AC_DEFINE([PHYSFS_LANG], PHYSFS_LANG_SPANISH, [define desired natural 
language])
! fi
! 
! if test x$physfslang = xfrench; then
!   physfs_valid_lang=yes
!   AC_DEFINE([PHYSFS_LANG], PHYSFS_LANG_FRENCH, [define desired natural 
language])
! fi
! 
! 
! dnl Add other language checks here...
! 
! 
! AC_MSG_RESULT([$physfs_valid_lang])
! if test x$physfs_valid_lang = xno; then
!   AC_MSG_WARN([***])
!   AC_MSG_WARN([*** You've asked for "$physfslang" language support...])
!   AC_MSG_WARN([***  ...but we don't support that.])
!   AC_MSG_WARN([*** You could choose another language,])
!   AC_MSG_WARN([***   but is this what you REALLY wanted?])
!   AC_MSG_WARN([*** Please see the LANG section of physfs_internal.h])
!   AC_MSG_WARN([***  for info on writing a translation.])
!   AC_MSG_WARN([***])
!   AC_MSG_WARN([*** Currently known languages:])
!   AC_MSG_WARN([***   --enable-language=english])
!   AC_MSG_WARN([***   --enable-language=spanish])
!   AC_MSG_WARN([***   --enable-language=russian-koi8-r])
!   AC_MSG_WARN([***   --enable-language=russian-cp1251])
!   AC_MSG_WARN([***   --enable-language=russian-cp866])
!   AC_MSG_WARN([***   --enable-language=russian-iso-8859-5])
!   AC_MSG_WARN([***   --enable-language=french])
!   AC_MSG_WARN([***])
!   AC_MSG_ERROR([*** unsupported language. stop.])
! fi
! 
! have_non_posix_threads=no
! 
  AC_MSG_CHECKING([if this is BeOS])
  if test x$build_os = xbeos; then
    this_is_beos=yes
+   enable_pthreads=no
+   have_non_posix_threads=yes
    LIBS="$LIBS -lroot -lbe"
  else
***************
*** 234,237 ****
--- 318,323 ----
    this_is_cygwin=yes
    CFLAGS="$CFLAGS -DWIN32"
+   enable_pthreads=no
+   have_non_posix_threads=yes
  else
    this_is_cygwin=no
***************
*** 282,286 ****
      this_is_atheos=yes
      enable_cdrom=no
!     LDFLAGS="$LDFLAGS -lpthread"
    fi
  
--- 368,372 ----
      this_is_atheos=yes
      enable_cdrom=no
!     enable_pthreads=no
    fi
  
***************
*** 293,301 ****
    AC_MSG_WARN([***])
    AC_MSG_WARN([*** There is no CD-ROM support in this build!])
!   AC_MSG_WARN([*** PhysicsFS will just pretend there are no discs!])
!   AC_MSG_WARN([*** Is this what you really wanted?])
    AC_MSG_WARN([***])
  fi
  
  
  # Checks for header files.
--- 379,402 ----
    AC_MSG_WARN([***])
    AC_MSG_WARN([*** There is no CD-ROM support in this build!])
!   AC_MSG_WARN([*** PhysicsFS will just pretend there are no discs.])
!   AC_MSG_WARN([*** This may be fine, depending on how PhysicsFS is used,])
!   AC_MSG_WARN([***   but is this what you REALLY wanted?])
!   AC_MSG_WARN([*** (Maybe fix configure.in, or write a platform driver?)])
    AC_MSG_WARN([***])
  fi
  
+ if test x$enable_pthreads != xyes; then
+   AC_DEFINE([PHYSFS_NO_PTHREADS_SUPPORT], 1, [define if we have no POSIX 
threads support])
+   if test x$have_non_posix_threads != xyes; then
+     AC_MSG_WARN([***])
+     AC_MSG_WARN([*** There is no thread support in this build!])
+     AC_MSG_WARN([*** PhysicsFS will NOT be reentrant!])
+     AC_MSG_WARN([*** This may be fine, depending on how PhysicsFS is used,])
+     AC_MSG_WARN([***   but is this what you REALLY wanted?])
+     AC_MSG_WARN([*** (Maybe fix configure.in, or write a platform driver?)])
+     AC_MSG_WARN([***])
+   fi
+ fi
+ 
  
  # Checks for header files.
***************
*** 332,335 ****
--- 433,437 ----
  test/Makefile
  extras/Makefile
+ physfs.spec
  ])
  

Index: physfs.c
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/physfs.c,v
retrieving revision 1.1.1.1.6.5
retrieving revision 1.1.1.1.6.6
diff -C2 -r1.1.1.1.6.5 -r1.1.1.1.6.6
*** physfs.c    25 Jul 2002 07:27:38 -0000      1.1.1.1.6.5
--- physfs.c    30 Jul 2002 20:50:27 -0000      1.1.1.1.6.6
***************
*** 210,224 ****
  
  
  static DirHandle *openDirectory(const char *d, int forWriting)
  {
      const DirFunctions **i;
  
      BAIL_IF_MACRO(!__PHYSFS_platformExists(d), ERR_NO_SUCH_FILE, NULL);
  
!     for (i = dirFunctions; *i != NULL; i++)
      {
!         if ((*i)->isArchive(d, forWriting))
!             return( (*i)->openArchive(d, forWriting) );
!     } /* for */
  
      __PHYSFS_setError(ERR_UNSUPPORTED_ARCHIVE);
--- 210,271 ----
  
  
+ static const char *find_filename_extension(const char *fname)
+ {
+     const char *retval = strchr(fname, '.');
+     const char *p = retval;
+ 
+     while (p != NULL)
+     {
+         p = strchr(p + 1, '.');
+         if (p != NULL)
+             retval = p;
+     } /* while */
+ 
+     if (retval != NULL)
+         retval++;  /* skip '.' */
+ 
+     return(retval);
+ } /* find_filename_extension */
+ 
+ 
  static DirHandle *openDirectory(const char *d, int forWriting)
  {
      const DirFunctions **i;
+     const char *ext;
  
      BAIL_IF_MACRO(!__PHYSFS_platformExists(d), ERR_NO_SUCH_FILE, NULL);
  
!     ext = find_filename_extension(d);
!     if (ext != NULL)
      {
!         /* Look for archivers with matching file extensions first... */
!         for (i = dirFunctions; *i != NULL; i++)
!         {
!             if (__PHYSFS_platformStricmp(ext, (*i)->info->extension) == 0)
!             {
!                 if ((*i)->isArchive(d, forWriting))
!                     return( (*i)->openArchive(d, forWriting) );
!             } /* if */
!         } /* for */
! 
!         /* failing an exact file extension match, try all the others... */
!         for (i = dirFunctions; *i != NULL; i++)
!         {
!             if (__PHYSFS_platformStricmp(ext, (*i)->info->extension) != 0)
!             {
!                 if ((*i)->isArchive(d, forWriting))
!                     return( (*i)->openArchive(d, forWriting) );
!             } /* if */
!         } /* for */
!     } /* if */
! 
!     else  /* no extension? Try them all. */
!     {
!         for (i = dirFunctions; *i != NULL; i++)
!         {
!             if ((*i)->isArchive(d, forWriting))
!                 return( (*i)->openArchive(d, forWriting) );
!         } /* for */
!     } /* else */
  
      __PHYSFS_setError(ERR_UNSUPPORTED_ARCHIVE);
***************
*** 778,782 ****
      if (archiveExt != NULL)
      {
!         char **rc = PHYSFS_enumerateFiles("");
          char **i;
          size_t extlen = strlen(archiveExt);
--- 825,829 ----
      if (archiveExt != NULL)
      {
!         char **rc = PHYSFS_enumerateFiles("/");
          char **i;
          size_t extlen = strlen(archiveExt);

Index: physfs.h
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/physfs.h,v
retrieving revision 1.1.1.1.6.3
retrieving revision 1.1.1.1.6.4
diff -C2 -r1.1.1.1.6.3 -r1.1.1.1.6.4
*** physfs.h    11 Jul 2002 08:59:29 -0000      1.1.1.1.6.3
--- physfs.h    30 Jul 2002 20:50:27 -0000      1.1.1.1.6.4
***************
*** 747,751 ****
   *                   from other programs using PhysicsFS.
   *
!  *    \param archiveExt File extention used by your program to specify an
   *                      archive. For example, Quake 3 uses "pk3", even though
   *                      they are just zipfiles. Specify NULL to not dig out
--- 747,751 ----
   *                   from other programs using PhysicsFS.
   *
!  *    \param archiveExt File extension used by your program to specify an
   *                      archive. For example, Quake 3 uses "pk3", even though
   *                      they are just zipfiles. Specify NULL to not dig out

Index: physfs_internal.h
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/physfs_internal.h,v
retrieving revision 1.1.1.1.6.5
retrieving revision 1.1.1.1.6.6
diff -C2 -r1.1.1.1.6.5 -r1.1.1.1.6.6
*** physfs_internal.h   25 Jul 2002 07:27:38 -0000      1.1.1.1.6.5
--- physfs_internal.h   30 Jul 2002 20:50:27 -0000      1.1.1.1.6.6
***************
*** 21,24 ****
--- 21,705 ----
  #endif
  
+ 
+ /* The LANG section. */
+ /*  please send questions/translations to Ryan: address@hidden */
+ 
+ #if (!defined PHYSFS_LANG)
+ #  define PHYSFS_LANG PHYSFS_LANG_ENGLISH
+ #endif
+ 
+ #define PHYSFS_LANG_ENGLISH            1  /* English by Ryan C. Gordon  */
+ #define PHYSFS_LANG_RUSSIAN_KOI8_R     2  /* Russian by Ed Sinjiashvili */
+ #define PHYSFS_LANG_RUSSIAN_CP1251     3  /* Russian by Ed Sinjiashvili */
+ #define PHYSFS_LANG_RUSSIAN_CP866      4  /* Russian by Ed Sinjiashvili */
+ #define PHYSFS_LANG_RUSSIAN_ISO_8859_5 5  /* Russian by Ed Sinjiashvili */
+ #define PHYSFS_LANG_SPANISH            6  /* Spanish by Pedro J. Pérez  */
+ #define PHYSFS_LANG_FRENCH             7  /*  French by Stéphane Peter  */
+ 
+ #if (PHYSFS_LANG == PHYSFS_LANG_ENGLISH)
+  #define DIR_ARCHIVE_DESCRIPTION  "Non-archive, direct filesystem I/O"
+  #define GRP_ARCHIVE_DESCRIPTION  "Build engine Groupfile format"
+  #define ZIP_ARCHIVE_DESCRIPTION  "PkZip/WinZip/Info-Zip compatible"
+ 
+  #define ERR_IS_INITIALIZED       "Already initialized"
+  #define ERR_NOT_INITIALIZED      "Not initialized"
+  #define ERR_INVALID_ARGUMENT     "Invalid argument"
+  #define ERR_FILES_STILL_OPEN     "Files still open"
+  #define ERR_NO_DIR_CREATE        "Failed to create directories"
+  #define ERR_OUT_OF_MEMORY        "Out of memory"
+  #define ERR_NOT_IN_SEARCH_PATH   "No such entry in search path"
+  #define ERR_NOT_SUPPORTED        "Operation not supported"
+  #define ERR_UNSUPPORTED_ARCHIVE  "Archive type unsupported"
+  #define ERR_NOT_A_HANDLE         "Not a file handle"
+  #define ERR_INSECURE_FNAME       "Insecure filename"
+  #define ERR_SYMLINK_DISALLOWED   "Symbolic links are disabled"
+  #define ERR_NO_WRITE_DIR         "Write directory is not set"
+  #define ERR_NO_SUCH_FILE         "File not found"
+  #define ERR_NO_SUCH_PATH         "Path not found"
+  #define ERR_NO_SUCH_VOLUME       "Volume not found"
+  #define ERR_PAST_EOF             "Past end of file"
+  #define ERR_ARC_IS_READ_ONLY     "Archive is read-only"
+  #define ERR_IO_ERROR             "I/O error"
+  #define ERR_CANT_SET_WRITE_DIR   "Can't set write directory"
+  #define ERR_SYMLINK_LOOP         "Infinite symbolic link loop"
+  #define ERR_COMPRESSION          "(De)compression error"
+  #define ERR_NOT_IMPLEMENTED      "Not implemented"
+  #define ERR_OS_ERROR             "Operating system reported error"
+  #define ERR_FILE_EXISTS          "File already exists"
+  #define ERR_NOT_A_FILE           "Not a file"
+  #define ERR_NOT_A_DIR            "Not a directory"
+  #define ERR_NOT_AN_ARCHIVE       "Not an archive"
+  #define ERR_CORRUPTED            "Corrupted archive"
+  #define ERR_SEEK_OUT_OF_RANGE    "Seek out of range"
+  #define ERR_BAD_FILENAME         "Bad filename"
+  #define ERR_PHYSFS_BAD_OS_CALL   "(BUG) PhysicsFS made a bad system call"
+  #define ERR_ARGV0_IS_NULL        "argv0 is NULL"
+  #define ERR_ZLIB_NEED_DICT       "zlib: need dictionary"
+  #define ERR_ZLIB_DATA_ERROR      "zlib: data error"
+  #define ERR_ZLIB_MEMORY_ERROR    "zlib: memory error"
+  #define ERR_ZLIB_BUFFER_ERROR    "zlib: buffer error"
+  #define ERR_ZLIB_VERSION_ERROR   "zlib: version error"
+  #define ERR_ZLIB_UNKNOWN_ERROR   "zlib: unknown error"
+  #define ERR_SEARCHPATH_TRUNC     "Search path was truncated"
+  #define ERR_GETMODFN_TRUNC       "GetModuleFileName() was truncated"
+  #define ERR_GETMODFN_NO_DIR      "GetModuleFileName() had no dir"
+  #define ERR_DISK_FULL            "Disk is full"
+  #define ERR_DIRECTORY_FULL       "Directory full"
+  #define ERR_MACOS_GENERIC        "MacOS reported error (%d)"
+  #define ERR_OS2_GENERIC          "OS/2 reported error (%d)"
+  #define ERR_VOL_LOCKED_HW        "Volume is locked through hardware"
+  #define ERR_VOL_LOCKED_SW        "Volume is locked through software"
+  #define ERR_FILE_LOCKED          "File is locked"
+  #define ERR_FILE_OR_DIR_BUSY     "File/directory is busy"
+  #define ERR_FILE_ALREADY_OPEN_W  "File already open for writing"
+  #define ERR_FILE_ALREADY_OPEN_R  "File already open for reading"
+  #define ERR_INVALID_REFNUM       "Invalid reference number"
+  #define ERR_GETTING_FILE_POS     "Error getting file position"
+  #define ERR_VOLUME_OFFLINE       "Volume is offline"
+  #define ERR_PERMISSION_DENIED    "Permission denied"
+  #define ERR_VOL_ALREADY_ONLINE   "Volume already online"
+  #define ERR_NO_SUCH_DRIVE        "No such drive"
+  #define ERR_NOT_MAC_DISK         "Not a Macintosh disk"
+  #define ERR_VOL_EXTERNAL_FS      "Volume belongs to an external filesystem"
+  #define ERR_PROBLEM_RENAME       "Problem during rename"
+  #define ERR_BAD_MASTER_BLOCK     "Bad master directory block"
+  #define ERR_CANT_MOVE_FORBIDDEN  "Attempt to move forbidden"
+  #define ERR_WRONG_VOL_TYPE       "Wrong volume type"
+  #define ERR_SERVER_VOL_LOST      "Server volume has been disconnected"
+  #define ERR_FILE_ID_NOT_FOUND    "File ID not found"
+  #define ERR_FILE_ID_EXISTS       "File ID already exists"
+  #define ERR_SERVER_NO_RESPOND    "Server not responding"
+  #define ERR_USER_AUTH_FAILED     "User authentication failed"
+  #define ERR_PWORD_EXPIRED        "Password has expired on server"
+  #define ERR_ACCESS_DENIED        "Access denied"
+  #define ERR_NOT_A_DOS_DISK       "Not a DOS disk"
+  #define ERR_SHARING_VIOLATION    "Sharing violation"
+  #define ERR_CANNOT_MAKE          "Cannot make"
+  #define ERR_DEV_IN_USE           "Device already in use"
+  #define ERR_OPEN_FAILED          "Open failed"
+  #define ERR_PIPE_BUSY            "Pipe is busy"
+  #define ERR_SHARING_BUF_EXCEEDED "Sharing buffer exceeded"
+  #define ERR_TOO_MANY_HANDLES     "Too many open handles"
+  #define ERR_SEEK_ERROR           "Seek error"
+  #define ERR_DEL_CWD              "Trying to delete current working directory"
+  #define ERR_WRITE_PROTECT_ERROR  "Write protect error"
+  #define ERR_WRITE_FAULT          "Write fault"
+  #define ERR_LOCK_VIOLATION       "Lock violation"
+  #define ERR_GEN_FAILURE          "General failure"
+  #define ERR_UNCERTAIN_MEDIA      "Uncertain media"
+  #define ERR_PROT_VIOLATION       "Protection violation"
+  #define ERR_BROKEN_PIPE          "Broken pipe"
+ 
+ #elif (PHYSFS_LANG == PHYSFS_LANG_RUSSIAN_KOI8_R)
+  #define DIR_ARCHIVE_DESCRIPTION  "îÅ ÁÒÈÉ×, ÎÅÐÏÓÒÅÄÓÔ×ÅÎÎÙÊ ××ÏÄ/×Ù×ÏÄ 
ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ"
+  #define GRP_ARCHIVE_DESCRIPTION  "æÏÒÍÁÔ ÇÒÕÐÐÏ×ÏÇÏ ÆÁÊÌÁ Build engine"
+  #define ZIP_ARCHIVE_DESCRIPTION  "PkZip/WinZip/Info-Zip ÓÏ×ÍÅÓÔÉÍÙÊ"
+ 
+  #define ERR_IS_INITIALIZED       "õÖÅ ÉÎÉÃÉÁÌÉÚÉÒÏ×ÁÎ"
+  #define ERR_NOT_INITIALIZED      "îÅ ÉÎÉÃÉÁÌÉÚÉÒÏ×ÁÎ"
+  #define ERR_INVALID_ARGUMENT     "îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ"
+  #define ERR_FILES_STILL_OPEN     "æÁÊÌÙ ÅÝÅ ÏÔËÒÙÔÙ"
+  #define ERR_NO_DIR_CREATE        "îÅ ÍÏÇÕ ÓÏÚÄÁÔØ ËÁÔÁÌÏÇÉ"
+  #define ERR_OUT_OF_MEMORY        "ëÏÎÞÉÌÁÓØ ÐÁÍÑÔØ"
+  #define ERR_NOT_IN_SEARCH_PATH   "îÅÔ ÔÁËÏÇÏ ÜÌÅÍÅÎÔÁ × ÐÕÔÉ ÐÏÉÓËÁ"
+  #define ERR_NOT_SUPPORTED        "ïÐÅÒÁÃÉÑ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ"
+  #define ERR_UNSUPPORTED_ARCHIVE  "áÒÈÉ×Ù ÔÁËÏÇÏ ÔÉÐÁ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ"
+  #define ERR_NOT_A_HANDLE         "îÅ ÆÁÊÌÏ×ÙÊ ÄÅÓËÒÉÐÔÏÒ"
+  #define ERR_INSECURE_FNAME       "îÅÂÅÚÏÐÁÓÎÏÅ ÉÍÑ ÆÁÊÌÁ"
+  #define ERR_SYMLINK_DISALLOWED   "óÉÍ×ÏÌØÎÙÅ ÓÓÙÌËÉ ÏÔËÌÀÞÅÎÙ"
+  #define ERR_NO_WRITE_DIR         "ëÁÔÁÌÏÇ ÄÌÑ ÚÁÐÉÓÉ ÎÅ ÕÓÔÁÎÏ×ÌÅÎ"
+  #define ERR_NO_SUCH_FILE         "æÁÊÌ ÎÅ ÎÁÊÄÅÎ"
+  #define ERR_NO_SUCH_PATH         "ðÕÔØ ÎÅ ÎÁÊÄÅÎ"
+  #define ERR_NO_SUCH_VOLUME       "ôÏÍ ÎÅ ÎÁÊÄÅÎ"
+  #define ERR_PAST_EOF             "úÁ ËÏÎÃÏÍ ÆÁÊÌÁ"
+  #define ERR_ARC_IS_READ_ONLY     "áÒÈÉ× ÔÏÌØËÏ ÄÌÑ ÞÔÅÎÉÑ"
+  #define ERR_IO_ERROR             "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ"
+  #define ERR_CANT_SET_WRITE_DIR   "îÅ ÍÏÇÕ ÕÓÔÁÎÏ×ÉÔØ ËÁÔÁÌÏÇ ÄÌÑ ÚÁÐÉÓÉ"
+  #define ERR_SYMLINK_LOOP         "âÅÓËÏÎÅÞÎÙÊ ÃÉËÌ ÓÉÍ×ÏÌØÎÏÊ ÓÓÙÌËÉ"
+  #define ERR_COMPRESSION          "ïÛÉÂËÁ (òÁÓ)ÐÁËÏ×ËÉ"
+  #define ERR_NOT_IMPLEMENTED      "îÅ ÒÅÁÌÉÚÏ×ÁÎÏ"
+  #define ERR_OS_ERROR             "ïÐÅÒÁÃÉÏÎÎÁÑ ÓÉÓÔÅÍÁ ÓÏÏÂÝÉÌÁ ÏÛÉÂËÕ"
+  #define ERR_FILE_EXISTS          "æÁÊÌ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ"
+  #define ERR_NOT_A_FILE           "îÅ ÆÁÊÌ"
+  #define ERR_NOT_A_DIR            "îÅ ËÁÔÁÌÏÇ"
+  #define ERR_NOT_AN_ARCHIVE       "îÅ ÁÒÈÉ×"
+  #define ERR_CORRUPTED            "ðÏ×ÒÅÖÄÅÎÎÙÊ ÁÒÈÉ×"
+  #define ERR_SEEK_OUT_OF_RANGE    "ðÏÚÉÃÉÏÎÉÒÏ×ÁÎÉÅ ÚÁ ÐÒÅÄÅÌÙ"
+  #define ERR_BAD_FILENAME         "îÅ×ÅÒÎÏÅ ÉÍÑ ÆÁÊÌÁ"
+  #define ERR_PHYSFS_BAD_OS_CALL   "(BUG) PhysicsFS ×ÙÐÏÌÎÉÌÁ ÎÅ×ÅÒÎÙÊ 
ÓÉÓÔÅÍÎÙÊ ×ÙÚÏ×"
+  #define ERR_ARGV0_IS_NULL        "argv0 is NULL"
+  #define ERR_ZLIB_NEED_DICT       "zlib: ÎÕÖÅÎ ÓÌÏ×ÁÒØ"
+  #define ERR_ZLIB_DATA_ERROR      "zlib: ÏÛÉÂËÁ ÄÁÎÎÙÈ"
+  #define ERR_ZLIB_MEMORY_ERROR    "zlib: ÏÛÉÂËÁ ÐÁÍÑÔÉ"
+  #define ERR_ZLIB_BUFFER_ERROR    "zlib: ÏÛÉÂËÁ ÂÕÆÅÒÁ"
+  #define ERR_ZLIB_VERSION_ERROR   "zlib: ÏÛÉÂËÁ ×ÅÒÓÉÉ"
+  #define ERR_ZLIB_UNKNOWN_ERROR   "zlib: ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ"
+  #define ERR_SEARCHPATH_TRUNC     "ðÕÔØ ÐÏÉÓËÁ ÏÂÒÅÚÁÎ"
+  #define ERR_GETMODFN_TRUNC       "GetModuleFileName() ÏÂÒÅÚÁÎ"
+  #define ERR_GETMODFN_NO_DIR      "GetModuleFileName() ÎÅ ÐÏÌÕÞÉÌ ËÁÔÁÌÏÇ"
+  #define ERR_DISK_FULL            "äÉÓË ÐÏÌÏÎ"
+  #define ERR_DIRECTORY_FULL       "ëÁÔÁÌÏÇ ÐÏÌÏÎ"
+  #define ERR_MACOS_GENERIC        "MacOS ÓÏÏÂÝÉÌÁ ÏÛÉÂËÕ (%d)"
+  #define ERR_OS2_GENERIC          "OS/2 ÓÏÏÂÝÉÌÁ ÏÛÉÂËÕ (%d)"
+  #define ERR_VOL_LOCKED_HW        "ôÏÍ ÂÌÏËÉÒÏ×ÁÎ ÁÐÐÁÒÁÔÎÏ"
+  #define ERR_VOL_LOCKED_SW        "ôÏÍ ÂÌÏËÉÒÏ×ÁÎ ÐÒÏÇÒÁÍÍÎÏ"
+  #define ERR_FILE_LOCKED          "æÁÊÌ ÚÁÂÌÏËÉÒÏ×ÁÎ"
+  #define ERR_FILE_OR_DIR_BUSY     "æÁÊÌ/ËÁÔÁÌÏÇ ÚÁÎÑÔ"
+  #define ERR_FILE_ALREADY_OPEN_W  "æÁÊÌ ÕÖÅ ÏÔËÒÙÔ ÎÁ ÚÁÐÉÓØ"
+  #define ERR_FILE_ALREADY_OPEN_R  "æÁÊÌ ÕÖÅ ÏÔËÒÙÔ ÎÁ ÞÔÅÎÉÅ"
+  #define ERR_INVALID_REFNUM       "îÅ×ÅÒÎÏÅ ËÏÌÉÞÅÓÔ×Ï ÓÓÙÌÏË"
+  #define ERR_GETTING_FILE_POS     "ïÛÉÂËÁ ÐÒÉ ÐÏÌÕÞÅÎÉÉ ÐÏÚÉÃÉÉ ÆÁÊÌÁ"
+  #define ERR_VOLUME_OFFLINE       "ôÏÍ ÏÔÓÏÅÄÉÎÅÎ"
+  #define ERR_PERMISSION_DENIED    "ïÔËÁÚÁÎÏ × ÒÁÚÒÅÛÅÎÉÉ"
+  #define ERR_VOL_ALREADY_ONLINE   "ôÏÍ ÕÖÅ ÐÏÄÓÏÅÄÉÎÅÎ"
+  #define ERR_NO_SUCH_DRIVE        "îÅÔ ÔÁËÏÇÏ ÄÉÓËÁ"
+  #define ERR_NOT_MAC_DISK         "îÅ ÄÉÓË Macintosh"
+  #define ERR_VOL_EXTERNAL_FS      "ôÏÍ ÐÒÉÎÁÄÌÅÖÉÔ ×ÎÅÛÎÅÊ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ"
+  #define ERR_PROBLEM_RENAME       "ðÒÏÂÌÅÍÁ ÐÒÉ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÉ"
+  #define ERR_BAD_MASTER_BLOCK     "ðÌÏÈÏÊ ÇÌÁ×ÎÙÊ ÂÌÏË ËÁÔÁÌÏÇÁ"
+  #define ERR_CANT_MOVE_FORBIDDEN  "ðÏÐÙÔËÁ ÐÅÒÅÍÅÓÔÉÔØ ÚÁÐÒÅÝÅÎÁ"
+  #define ERR_WRONG_VOL_TYPE       "îÅ×ÅÒÎÙÊ ÔÉÐ ÔÏÍÁ"
+  #define ERR_SERVER_VOL_LOST      "óÅÒ×ÅÒÎÙÊ ÔÏÍ ÂÙÌ ÏÔÓÏÅÄÉÎÅÎ"
+  #define ERR_FILE_ID_NOT_FOUND    "éÄÅÎÔÉÆÉËÁÔÏÒ ÆÁÊÌÁ ÎÅ ÎÁÊÄÅÎ"
+  #define ERR_FILE_ID_EXISTS       "éÄÅÎÔÉÆÉËÁÔÏÒ ÆÁÊÌÁ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ"
+  #define ERR_SERVER_NO_RESPOND    "óÅÒ×ÅÒ ÎÅ ÏÔ×ÅÞÁÅÔ"
+  #define ERR_USER_AUTH_FAILED     "éÄÅÎÔÉÆÉËÁÃÉÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅ ÕÄÁÌÁÓØ"
+  #define ERR_PWORD_EXPIRED        "ðÁÒÏÌØ ÎÁ ÓÅÒ×ÅÒÅ ÕÓÔÁÒÅÌ"
+  #define ERR_ACCESS_DENIED        "ïÔËÁÚÁÎÏ × ÄÏÓÔÕÐÅ"
+  #define ERR_NOT_A_DOS_DISK       "îÅ ÄÉÓË DOS"
+  #define ERR_SHARING_VIOLATION    "îÁÒÕÛÅÎÉÅ ÓÏ×ÍÅÓÔÎÏÇÏ ÄÏÓÔÕÐÁ"
+  #define ERR_CANNOT_MAKE          "îÅ ÍÏÇÕ ÓÏÂÒÁÔØ"
+  #define ERR_DEV_IN_USE           "õÓÔÒÏÊÓÔ×Ï ÕÖÅ ÉÓÐÏÌØÚÕÅÔÓÑ"
+  #define ERR_OPEN_FAILED          "ïÔËÒÙÔÉÅ ÎÅ ÕÄÁÌÏÓØ"
+  #define ERR_PIPE_BUSY            "ëÏÎ×ÅÊÅÒ ÚÁÎÑÔ"
+  #define ERR_SHARING_BUF_EXCEEDED "òÁÚÄÅÌÑÅÍÙÊ ÂÕÆÅÒ ÐÅÒÅÐÏÌÎÅÎ"
+  #define ERR_TOO_MANY_HANDLES     "óÌÉÛËÏÍ ÍÎÏÇÏ ÏÔËÒÙÔÙÈ ÄÅÓËÒÉÐÔÏÒÏ×"
+  #define ERR_SEEK_ERROR           "ïÛÉÂËÁ ÐÏÚÉÃÉÏÎÉÒÏ×ÁÎÉÑ"
+  #define ERR_DEL_CWD              "ðÏÐÙÔËÁ ÕÄÁÌÉÔØ ÔÅËÕÝÉÊ ÒÁÂÏÞÉÊ ËÁÔÁÌÏÇ"
+  #define ERR_WRITE_PROTECT_ERROR  "ïÛÉÂËÁ ÚÁÝÉÔÙ ÚÁÐÉÓÉ"
+  #define ERR_WRITE_FAULT          "ïÛÉÂËÁ ÚÁÐÉÓÉ"
+  #define ERR_LOCK_VIOLATION       "îÁÒÕÛÅÎÉÅ ÂÌÏËÉÒÏ×ËÉ"
+  #define ERR_GEN_FAILURE          "ïÂÝÉÊ ÓÂÏÊ"
+  #define ERR_UNCERTAIN_MEDIA      "îÅÏÐÒÅÄÅÌÅÎÎÙÊ ÎÏÓÉÔÅÌØ"
+  #define ERR_PROT_VIOLATION       "îÁÒÕÛÅÎÉÅ ÚÁÝÉÔÙ"
+  #define ERR_BROKEN_PIPE          "óÌÏÍÁÎÎÙÊ ËÏÎ×ÅÊÅÒ"
+ 
+ #elif (PHYSFS_LANG == PHYSFS_LANG_RUSSIAN_CP1251)
+  #define DIR_ARCHIVE_DESCRIPTION  "Íå àðõèâ, íåïîñðåäñòâåííûé ââîä/âûâîä 
ôàéëîâîé ñèñòåìû"
+  #define GRP_ARCHIVE_DESCRIPTION  "Ôîðìàò ãðóïïîâîãî ôàéëà Build engine"
+  #define ZIP_ARCHIVE_DESCRIPTION  "PkZip/WinZip/Info-Zip ñîâìåñòèìûé"
+ 
+  #define ERR_IS_INITIALIZED       "Óæå èíèöèàëèçèðîâàí"
+  #define ERR_NOT_INITIALIZED      "Íå èíèöèàëèçèðîâàí"
+  #define ERR_INVALID_ARGUMENT     "Íåâåðíûé àðãóìåíò"
+  #define ERR_FILES_STILL_OPEN     "Ôàéëû åùå îòêðûòû"
+  #define ERR_NO_DIR_CREATE        "Íå ìîãó ñîçäàòü êàòàëîãè"
+  #define ERR_OUT_OF_MEMORY        "Êîí÷èëàñü ïàìÿòü"
+  #define ERR_NOT_IN_SEARCH_PATH   "Íåò òàêîãî ýëåìåíòà â ïóòè ïîèñêà"
+  #define ERR_NOT_SUPPORTED        "Îïåðàöèÿ íå ïîääåðæèâàåòñÿ"
+  #define ERR_UNSUPPORTED_ARCHIVE  "Àðõèâû òàêîãî òèïà íå ïîääåðæèâàþòñÿ"
+  #define ERR_NOT_A_HANDLE         "Íå ôàéëîâûé äåñêðèïòîð"
+  #define ERR_INSECURE_FNAME       "Íåáåçîïàñíîå èìÿ ôàéëà"
+  #define ERR_SYMLINK_DISALLOWED   "Ñèìâîëüíûå ññûëêè îòêëþ÷åíû"
+  #define ERR_NO_WRITE_DIR         "Êàòàëîã äëÿ çàïèñè íå óñòàíîâëåí"
+  #define ERR_NO_SUCH_FILE         "Ôàéë íå íàéäåí"
+  #define ERR_NO_SUCH_PATH         "Ïóòü íå íàéäåí"
+  #define ERR_NO_SUCH_VOLUME       "Òîì íå íàéäåí"
+  #define ERR_PAST_EOF             "Çà êîíöîì ôàéëà"
+  #define ERR_ARC_IS_READ_ONLY     "Àðõèâ òîëüêî äëÿ ÷òåíèÿ"
+  #define ERR_IO_ERROR             "Îøèáêà ââîäà/âûâîäà"
+  #define ERR_CANT_SET_WRITE_DIR   "Íå ìîãó óñòàíîâèòü êàòàëîã äëÿ çàïèñè"
+  #define ERR_SYMLINK_LOOP         "Áåñêîíå÷íûé öèêë ñèìâîëüíîé ññûëêè"
+  #define ERR_COMPRESSION          "Îøèáêà (Ðàñ)ïàêîâêè"
+  #define ERR_NOT_IMPLEMENTED      "Íå ðåàëèçîâàíî"
+  #define ERR_OS_ERROR             "Îïåðàöèîííàÿ ñèñòåìà ñîîáùèëà îøèáêó"
+  #define ERR_FILE_EXISTS          "Ôàéë óæå ñóùåñòâóåò"
+  #define ERR_NOT_A_FILE           "Íå ôàéë"
+  #define ERR_NOT_A_DIR            "Íå êàòàëîã"
+  #define ERR_NOT_AN_ARCHIVE       "Íå àðõèâ"
+  #define ERR_CORRUPTED            "Ïîâðåæäåííûé àðõèâ"
+  #define ERR_SEEK_OUT_OF_RANGE    "Ïîçèöèîíèðîâàíèå çà ïðåäåëû"
+  #define ERR_BAD_FILENAME         "Íåâåðíîå èìÿ ôàéëà"
+  #define ERR_PHYSFS_BAD_OS_CALL   "(BUG) PhysicsFS âûïîëíèëà íåâåðíûé 
ñèñòåìíûé âûçîâ"
+  #define ERR_ARGV0_IS_NULL        "argv0 is NULL"
+  #define ERR_ZLIB_NEED_DICT       "zlib: íóæåí ñëîâàðü"
+  #define ERR_ZLIB_DATA_ERROR      "zlib: îøèáêà äàííûõ"
+  #define ERR_ZLIB_MEMORY_ERROR    "zlib: îøèáêà ïàìÿòè"
+  #define ERR_ZLIB_BUFFER_ERROR    "zlib: îøèáêà áóôåðà"
+  #define ERR_ZLIB_VERSION_ERROR   "zlib: îøèáêà âåðñèè"
+  #define ERR_ZLIB_UNKNOWN_ERROR   "zlib: íåèçâåñòíàÿ îøèáêà"
+  #define ERR_SEARCHPATH_TRUNC     "Ïóòü ïîèñêà îáðåçàí"
+  #define ERR_GETMODFN_TRUNC       "GetModuleFileName() îáðåçàí"
+  #define ERR_GETMODFN_NO_DIR      "GetModuleFileName() íå ïîëó÷èë êàòàëîã"
+  #define ERR_DISK_FULL            "Äèñê ïîëîí"
+  #define ERR_DIRECTORY_FULL       "Êàòàëîã ïîëîí"
+  #define ERR_MACOS_GENERIC        "MacOS ñîîáùèëà îøèáêó (%d)"
+  #define ERR_OS2_GENERIC          "OS/2 ñîîáùèëà îøèáêó (%d)"
+  #define ERR_VOL_LOCKED_HW        "Òîì áëîêèðîâàí àïïàðàòíî"
+  #define ERR_VOL_LOCKED_SW        "Òîì áëîêèðîâàí ïðîãðàììíî"
+  #define ERR_FILE_LOCKED          "Ôàéë çàáëîêèðîâàí"
+  #define ERR_FILE_OR_DIR_BUSY     "Ôàéë/êàòàëîã çàíÿò"
+  #define ERR_FILE_ALREADY_OPEN_W  "Ôàéë óæå îòêðûò íà çàïèñü"
+  #define ERR_FILE_ALREADY_OPEN_R  "Ôàéë óæå îòêðûò íà ÷òåíèå"
+  #define ERR_INVALID_REFNUM       "Íåâåðíîå êîëè÷åñòâî ññûëîê"
+  #define ERR_GETTING_FILE_POS     "Îøèáêà ïðè ïîëó÷åíèè ïîçèöèè ôàéëà"
+  #define ERR_VOLUME_OFFLINE       "Òîì îòñîåäèíåí"
+  #define ERR_PERMISSION_DENIED    "Îòêàçàíî â ðàçðåøåíèè"
+  #define ERR_VOL_ALREADY_ONLINE   "Òîì óæå ïîäñîåäèíåí"
+  #define ERR_NO_SUCH_DRIVE        "Íåò òàêîãî äèñêà"
+  #define ERR_NOT_MAC_DISK         "Íå äèñê Macintosh"
+  #define ERR_VOL_EXTERNAL_FS      "Òîì ïðèíàäëåæèò âíåøíåé ôàéëîâîé ñèñòåìå"
+  #define ERR_PROBLEM_RENAME       "Ïðîáëåìà ïðè ïåðåèìåíîâàíèè"
+  #define ERR_BAD_MASTER_BLOCK     "Ïëîõîé ãëàâíûé áëîê êàòàëîãà"
+  #define ERR_CANT_MOVE_FORBIDDEN  "Ïîïûòêà ïåðåìåñòèòü çàïðåùåíà"
+  #define ERR_WRONG_VOL_TYPE       "Íåâåðíûé òèï òîìà"
+  #define ERR_SERVER_VOL_LOST      "Ñåðâåðíûé òîì áûë îòñîåäèíåí"
+  #define ERR_FILE_ID_NOT_FOUND    "Èäåíòèôèêàòîð ôàéëà íå íàéäåí"
+  #define ERR_FILE_ID_EXISTS       "Èäåíòèôèêàòîð ôàéëà óæå ñóùåñòâóåò"
+  #define ERR_SERVER_NO_RESPOND    "Ñåðâåð íå îòâå÷àåò"
+  #define ERR_USER_AUTH_FAILED     "Èäåíòèôèêàöèÿ ïîëüçîâàòåëÿ íå óäàëàñü"
+  #define ERR_PWORD_EXPIRED        "Ïàðîëü íà ñåðâåðå óñòàðåë"
+  #define ERR_ACCESS_DENIED        "Îòêàçàíî â äîñòóïå"
+  #define ERR_NOT_A_DOS_DISK       "Íå äèñê DOS"
+  #define ERR_SHARING_VIOLATION    "Íàðóøåíèå ñîâìåñòíîãî äîñòóïà"
+  #define ERR_CANNOT_MAKE          "Íå ìîãó ñîáðàòü"
+  #define ERR_DEV_IN_USE           "Óñòðîéñòâî óæå èñïîëüçóåòñÿ"
+  #define ERR_OPEN_FAILED          "Îòêðûòèå íå óäàëîñü"
+  #define ERR_PIPE_BUSY            "Êîíâåéåð çàíÿò"
+  #define ERR_SHARING_BUF_EXCEEDED "Ðàçäåëÿåìûé áóôåð ïåðåïîëíåí"
+  #define ERR_TOO_MANY_HANDLES     "Ñëèøêîì ìíîãî îòêðûòûõ äåñêðèïòîðîâ"
+  #define ERR_SEEK_ERROR           "Îøèáêà ïîçèöèîíèðîâàíèÿ"
+  #define ERR_DEL_CWD              "Ïîïûòêà óäàëèòü òåêóùèé ðàáî÷èé êàòàëîã"
+  #define ERR_WRITE_PROTECT_ERROR  "Îøèáêà çàùèòû çàïèñè"
+  #define ERR_WRITE_FAULT          "Îøèáêà çàïèñè"
+  #define ERR_LOCK_VIOLATION       "Íàðóøåíèå áëîêèðîâêè"
+  #define ERR_GEN_FAILURE          "Îáùèé ñáîé"
+  #define ERR_UNCERTAIN_MEDIA      "Íåîïðåäåëåííûé íîñèòåëü"
+  #define ERR_PROT_VIOLATION       "Íàðóøåíèå çàùèòû"
+  #define ERR_BROKEN_PIPE          "Ñëîìàííûé êîíâåéåð"
+ 
+ #elif (PHYSFS_LANG == PHYSFS_LANG_RUSSIAN_CP866)
+  #define DIR_ARCHIVE_DESCRIPTION  "¥  à娢, ­¥¯®á।á⢥­­ë© ¢¢®¤/¢ë¢®¤ ä 
©«®¢®© á¨á⥬ë"
+  #define GRP_ARCHIVE_DESCRIPTION  "”®à¬ â £à㯯®¢®£® ä ©«  Build engine"
+  #define ZIP_ARCHIVE_DESCRIPTION  "PkZip/WinZip/Info-Zip ᮢ¬¥á⨬ë©"
+ 
+  #define ERR_IS_INITIALIZED       "“¦¥ ¨­¨æ¨ «¨§¨à®¢ ­"
+  #define ERR_NOT_INITIALIZED      "¥ ¨­¨æ¨ «¨§¨à®¢ ­"
+  #define ERR_INVALID_ARGUMENT     "¥¢¥à­ë©  à£ã¬¥­â"
+  #define ERR_FILES_STILL_OPEN     "” ©«ë ¥é¥ ®âªàëâë"
+  #define ERR_NO_DIR_CREATE        "¥ ¬®£ã ᮧ¤ âì ª â «®£¨"
+  #define ERR_OUT_OF_MEMORY        "Š®­ç¨« áì ¯ ¬ïâì"
+  #define ERR_NOT_IN_SEARCH_PATH   "¥â â ª®£® í«¥¬¥­â  ¢ ¯ã⨠¯®¨áª "
+  #define ERR_NOT_SUPPORTED        "Ž¯¥à æ¨ï ­¥ ¯®¤¤¥à¦¨¢ ¥âáï"
+  #define ERR_UNSUPPORTED_ARCHIVE  "€à娢ë â ª®£® ⨯  ­¥ ¯®¤¤¥à¦¨¢ îâáï"
+  #define ERR_NOT_A_HANDLE         "¥ ä ©«®¢ë© ¤¥áªà¨¯â®à"
+  #define ERR_INSECURE_FNAME       "¥¡¥§®¯ á­®¥ ¨¬ï ä ©« "
+  #define ERR_SYMLINK_DISALLOWED   "‘¨¬¢®«ì­ë¥ áá뫪¨ ®âª«î祭ë"
+  #define ERR_NO_WRITE_DIR         "Š â «®£ ¤«ï § ¯¨á¨ ­¥ ãáâ ­®¢«¥­"
+  #define ERR_NO_SUCH_FILE         "” ©« ­¥ ­ ©¤¥­"
+  #define ERR_NO_SUCH_PATH         "ãâì ­¥ ­ ©¤¥­"
+  #define ERR_NO_SUCH_VOLUME       "’®¬ ­¥ ­ ©¤¥­"
+  #define ERR_PAST_EOF             "‡  ª®­æ®¬ ä ©« "
+  #define ERR_ARC_IS_READ_ONLY     "€à娢 ⮫쪮 ¤«ï ç⥭¨ï"
+  #define ERR_IO_ERROR             "Žè¨¡ª  ¢¢®¤ /¢ë¢®¤ "
+  #define ERR_CANT_SET_WRITE_DIR   "¥ ¬®£ã ãáâ ­®¢¨âì ª â «®£ ¤«ï § ¯¨á¨"
+  #define ERR_SYMLINK_LOOP         "¥áª®­¥ç­ë© 横« ᨬ¢®«ì­®© áá뫪¨"
+  #define ERR_COMPRESSION          "Žè¨¡ª  ( á)¯ ª®¢ª¨"
+  #define ERR_NOT_IMPLEMENTED      "¥ ॠ«¨§®¢ ­®"
+  #define ERR_OS_ERROR             "Ž¯¥à æ¨®­­ ï á¨á⥬  á®®¡é¨«  ®è¨¡ªã"
+  #define ERR_FILE_EXISTS          "” ©« 㦥 áãé¥áâ¢ã¥â"
+  #define ERR_NOT_A_FILE           "¥ ä ©«"
+  #define ERR_NOT_A_DIR            "¥ ª â «®£"
+  #define ERR_NOT_AN_ARCHIVE       "¥  à娢"
+  #define ERR_CORRUPTED            "®¢à¥¦¤¥­­ë©  à娢"
+  #define ERR_SEEK_OUT_OF_RANGE    "®§¨æ¨®­¨à®¢ ­¨¥ §  ¯à¥¤¥«ë"
+  #define ERR_BAD_FILENAME         "¥¢¥à­®¥ ¨¬ï ä ©« "
+  #define ERR_PHYSFS_BAD_OS_CALL   "(BUG) PhysicsFS ¢ë¯®«­¨«  ­¥¢¥à­ë© 
á¨á⥬­ë© ¢ë§®¢"
+  #define ERR_ARGV0_IS_NULL        "argv0 is NULL"
+  #define ERR_ZLIB_NEED_DICT       "zlib: ­ã¦¥­ á«®¢ àì"
+  #define ERR_ZLIB_DATA_ERROR      "zlib: ®è¨¡ª  ¤ ­­ëå"
+  #define ERR_ZLIB_MEMORY_ERROR    "zlib: ®è¨¡ª  ¯ ¬ïâ¨"
+  #define ERR_ZLIB_BUFFER_ERROR    "zlib: ®è¨¡ª  ¡ãä¥à "
+  #define ERR_ZLIB_VERSION_ERROR   "zlib: ®è¨¡ª  ¢¥àᨨ"
+  #define ERR_ZLIB_UNKNOWN_ERROR   "zlib: ­¥¨§¢¥áâ­ ï ®è¨¡ª "
+  #define ERR_SEARCHPATH_TRUNC     "ãâì ¯®¨áª  ®¡à¥§ ­"
+  #define ERR_GETMODFN_TRUNC       "GetModuleFileName() ®¡à¥§ ­"
+  #define ERR_GETMODFN_NO_DIR      "GetModuleFileName() ­¥ ¯®«ã稫 ª â «®£"
+  #define ERR_DISK_FULL            "„¨áª ¯®«®­"
+  #define ERR_DIRECTORY_FULL       "Š â «®£ ¯®«®­"
+  #define ERR_MACOS_GENERIC        "MacOS á®®¡é¨«  ®è¨¡ªã (%d)"
+  #define ERR_OS2_GENERIC          "OS/2 á®®¡é¨«  ®è¨¡ªã (%d)"
+  #define ERR_VOL_LOCKED_HW        "’®¬ ¡«®ª¨à®¢ ­  ¯¯ à â­®"
+  #define ERR_VOL_LOCKED_SW        "’®¬ ¡«®ª¨à®¢ ­ ¯à®£à ¬¬­®"
+  #define ERR_FILE_LOCKED          "” ©« § ¡«®ª¨à®¢ ­"
+  #define ERR_FILE_OR_DIR_BUSY     "” ©«/ª â «®£ § ­ïâ"
+  #define ERR_FILE_ALREADY_OPEN_W  "” ©« 㦥 ®âªàëâ ­  § ¯¨áì"
+  #define ERR_FILE_ALREADY_OPEN_R  "” ©« 㦥 ®âªàëâ ­  ç⥭¨¥"
+  #define ERR_INVALID_REFNUM       "¥¢¥à­®¥ ª®«¨ç¥á⢮ ááë«®ª"
+  #define ERR_GETTING_FILE_POS     "Žè¨¡ª  ¯à¨ ¯®«ã祭¨¨ ¯®§¨æ¨¨ ä ©« "
+  #define ERR_VOLUME_OFFLINE       "’®¬ ®âᮥ¤¨­¥­"
+  #define ERR_PERMISSION_DENIED    "Žâª § ­® ¢ à §à¥è¥­¨¨"
+  #define ERR_VOL_ALREADY_ONLINE   "’®¬ 㦥 ¯®¤á®¥¤¨­¥­"
+  #define ERR_NO_SUCH_DRIVE        "¥â â ª®£® ¤¨áª "
+  #define ERR_NOT_MAC_DISK         "¥ ¤¨áª Macintosh"
+  #define ERR_VOL_EXTERNAL_FS      "’®¬ ¯à¨­ ¤«¥¦¨â ¢­¥è­¥© ä ©«®¢®© á¨á⥬¥"
+  #define ERR_PROBLEM_RENAME       "à®¡«¥¬  ¯à¨ ¯¥à¥¨¬¥­®¢ ­¨¨"
+  #define ERR_BAD_MASTER_BLOCK     "«®å®© £« ¢­ë© ¡«®ª ª â «®£ "
+  #define ERR_CANT_MOVE_FORBIDDEN  "®¯ë⪠ ¯¥à¥¬¥áâ¨âì § ¯à¥é¥­ "
+  #define ERR_WRONG_VOL_TYPE       "¥¢¥à­ë© ⨯ ⮬ "
+  #define ERR_SERVER_VOL_LOST      "‘¥à¢¥à­ë© ⮬ ¡ë« ®âᮥ¤¨­¥­"
+  #define ERR_FILE_ID_NOT_FOUND    "ˆ¤¥­â¨ä¨ª â®à ä ©«  ­¥ ­ ©¤¥­"
+  #define ERR_FILE_ID_EXISTS       "ˆ¤¥­â¨ä¨ª â®à ä ©«  㦥 áãé¥áâ¢ã¥â"
+  #define ERR_SERVER_NO_RESPOND    "‘¥à¢¥à ­¥ ®â¢¥ç ¥â"
+  #define ERR_USER_AUTH_FAILED     "ˆ¤¥­â¨ä¨ª æ¨ï ¯®«ì§®¢ â¥«ï ­¥ 㤠« áì"
+  #define ERR_PWORD_EXPIRED        " à®«ì ­  á¥à¢¥à¥ ãáâ à¥«"
+  #define ERR_ACCESS_DENIED        "Žâª § ­® ¢ ¤®áâ㯥"
+  #define ERR_NOT_A_DOS_DISK       "¥ ¤¨áª DOS"
+  #define ERR_SHARING_VIOLATION    " àã襭¨¥ ᮢ¬¥áâ­®£® ¤®áâ㯠"
+  #define ERR_CANNOT_MAKE          "¥ ¬®£ã ᮡà âì"
+  #define ERR_DEV_IN_USE           "“áâனá⢮ 㦥 ¨á¯®«ì§ã¥âáï"
+  #define ERR_OPEN_FAILED          "Žâªàë⨥ ­¥ 㤠«®áì"
+  #define ERR_PIPE_BUSY            "Š®­¢¥©¥à § ­ïâ"
+  #define ERR_SHARING_BUF_EXCEEDED " §¤¥«ï¥¬ë© ¡ãä¥à ¯¥à¥¯®«­¥­"
+  #define ERR_TOO_MANY_HANDLES     "‘«¨èª®¬ ¬­®£® ®âªàëâëå ¤¥áªà¨¯â®à®¢"
+  #define ERR_SEEK_ERROR           "Žè¨¡ª  ¯®§¨æ¨®­¨à®¢ ­¨ï"
+  #define ERR_DEL_CWD              "®¯ë⪠ 㤠«¨âì ⥪ã騩 à ¡®ç¨© ª â «®£"
+  #define ERR_WRITE_PROTECT_ERROR  "Žè¨¡ª  § é¨âë § ¯¨á¨"
+  #define ERR_WRITE_FAULT          "Žè¨¡ª  § ¯¨á¨"
+  #define ERR_LOCK_VIOLATION       " àã襭¨¥ ¡«®ª¨à®¢ª¨"
+  #define ERR_GEN_FAILURE          "Ž¡é¨© á¡®©"
+  #define ERR_UNCERTAIN_MEDIA      "¥®¯à¥¤¥«¥­­ë© ­®á¨â¥«ì"
+  #define ERR_PROT_VIOLATION       " àã襭¨¥ § é¨âë"
+  #define ERR_BROKEN_PIPE          "‘«®¬ ­­ë© ª®­¢¥©¥à"
+ 
+ #elif (PHYSFS_LANG == PHYSFS_LANG_RUSSIAN_ISO_8859_5)
+  #define DIR_ARCHIVE_DESCRIPTION  "½Õ ÐàåØÒ, ÝÕßÞáàÕÔáâÒÕÝÝëÙ ÒÒÞÔ/ÒëÒÞÔ 
äÐÙÛÞÒÞÙ áØáâÕÜë"
+  #define GRP_ARCHIVE_DESCRIPTION  "ÄÞàÜÐâ ÓàãßßÞÒÞÓÞ äÐÙÛÐ Build engine"
+  #define ZIP_ARCHIVE_DESCRIPTION  "PkZip/WinZip/Info-Zip áÞÒÜÕáâØÜëÙ"
+ 
+  #define ERR_IS_INITIALIZED       "ÃÖÕ ØÝØæØÐÛØ×ØàÞÒÐÝ"
+  #define ERR_NOT_INITIALIZED      "½Õ ØÝØæØÐÛØ×ØàÞÒÐÝ"
+  #define ERR_INVALID_ARGUMENT     "½ÕÒÕàÝëÙ ÐàÓãÜÕÝâ"
+  #define ERR_FILES_STILL_OPEN     "ÄÐÙÛë ÕéÕ ÞâÚàëâë"
+  #define ERR_NO_DIR_CREATE        "½Õ ÜÞÓã áÞ×ÔÐâì ÚÐâÐÛÞÓØ"
+  #define ERR_OUT_OF_MEMORY        "ºÞÝçØÛÐáì ßÐÜïâì"
+  #define ERR_NOT_IN_SEARCH_PATH   "½Õâ âÐÚÞÓÞ íÛÕÜÕÝâÐ Ò ßãâØ ßÞØáÚÐ"
+  #define ERR_NOT_SUPPORTED        "¾ßÕàÐæØï ÝÕ ßÞÔÔÕàÖØÒÐÕâáï"
+  #define ERR_UNSUPPORTED_ARCHIVE  "°àåØÒë âÐÚÞÓÞ âØßÐ ÝÕ ßÞÔÔÕàÖØÒÐîâáï"
+  #define ERR_NOT_A_HANDLE         "½Õ äÐÙÛÞÒëÙ ÔÕáÚàØßâÞà"
+  #define ERR_INSECURE_FNAME       "½ÕÑÕ×ÞßÐáÝÞÕ ØÜï äÐÙÛÐ"
+  #define ERR_SYMLINK_DISALLOWED   "ÁØÜÒÞÛìÝëÕ ááëÛÚØ ÞâÚÛîçÕÝë"
+  #define ERR_NO_WRITE_DIR         "ºÐâÐÛÞÓ ÔÛï ×ÐßØáØ ÝÕ ãáâÐÝÞÒÛÕÝ"
+  #define ERR_NO_SUCH_FILE         "ÄÐÙÛ ÝÕ ÝÐÙÔÕÝ"
+  #define ERR_NO_SUCH_PATH         "¿ãâì ÝÕ ÝÐÙÔÕÝ"
+  #define ERR_NO_SUCH_VOLUME       "ÂÞÜ ÝÕ ÝÐÙÔÕÝ"
+  #define ERR_PAST_EOF             "·Ð ÚÞÝæÞÜ äÐÙÛÐ"
+  #define ERR_ARC_IS_READ_ONLY     "°àåØÒ âÞÛìÚÞ ÔÛï çâÕÝØï"
+  #define ERR_IO_ERROR             "¾èØÑÚÐ ÒÒÞÔÐ/ÒëÒÞÔÐ"
+  #define ERR_CANT_SET_WRITE_DIR   "½Õ ÜÞÓã ãáâÐÝÞÒØâì ÚÐâÐÛÞÓ ÔÛï ×ÐßØáØ"
+  #define ERR_SYMLINK_LOOP         "±ÕáÚÞÝÕçÝëÙ æØÚÛ áØÜÒÞÛìÝÞÙ ááëÛÚØ"
+  #define ERR_COMPRESSION          "¾èØÑÚÐ (ÀÐá)ßÐÚÞÒÚØ"
+  #define ERR_NOT_IMPLEMENTED      "½Õ àÕÐÛØ×ÞÒÐÝÞ"
+  #define ERR_OS_ERROR             "¾ßÕàÐæØÞÝÝÐï áØáâÕÜÐ áÞÞÑéØÛÐ ÞèØÑÚã"
+  #define ERR_FILE_EXISTS          "ÄÐÙÛ ãÖÕ áãéÕáâÒãÕâ"
+  #define ERR_NOT_A_FILE           "½Õ äÐÙÛ"
+  #define ERR_NOT_A_DIR            "½Õ ÚÐâÐÛÞÓ"
+  #define ERR_NOT_AN_ARCHIVE       "½Õ ÐàåØÒ"
+  #define ERR_CORRUPTED            "¿ÞÒàÕÖÔÕÝÝëÙ ÐàåØÒ"
+  #define ERR_SEEK_OUT_OF_RANGE    "¿Þ×ØæØÞÝØàÞÒÐÝØÕ ×Ð ßàÕÔÕÛë"
+  #define ERR_BAD_FILENAME         "½ÕÒÕàÝÞÕ ØÜï äÐÙÛÐ"
+  #define ERR_PHYSFS_BAD_OS_CALL   "(BUG) PhysicsFS ÒëßÞÛÝØÛÐ ÝÕÒÕàÝëÙ 
áØáâÕÜÝëÙ Òë×ÞÒ"
+  #define ERR_ARGV0_IS_NULL        "argv0 is NULL"
+  #define ERR_ZLIB_NEED_DICT       "zlib: ÝãÖÕÝ áÛÞÒÐàì"
+  #define ERR_ZLIB_DATA_ERROR      "zlib: ÞèØÑÚÐ ÔÐÝÝëå"
+  #define ERR_ZLIB_MEMORY_ERROR    "zlib: ÞèØÑÚÐ ßÐÜïâØ"
+  #define ERR_ZLIB_BUFFER_ERROR    "zlib: ÞèØÑÚÐ ÑãäÕàÐ"
+  #define ERR_ZLIB_VERSION_ERROR   "zlib: ÞèØÑÚÐ ÒÕàáØØ"
+  #define ERR_ZLIB_UNKNOWN_ERROR   "zlib: ÝÕØ×ÒÕáâÝÐï ÞèØÑÚÐ"
+  #define ERR_SEARCHPATH_TRUNC     "¿ãâì ßÞØáÚÐ ÞÑàÕ×ÐÝ"
+  #define ERR_GETMODFN_TRUNC       "GetModuleFileName() ÞÑàÕ×ÐÝ"
+  #define ERR_GETMODFN_NO_DIR      "GetModuleFileName() ÝÕ ßÞÛãçØÛ ÚÐâÐÛÞÓ"
+  #define ERR_DISK_FULL            "´ØáÚ ßÞÛÞÝ"
+  #define ERR_DIRECTORY_FULL       "ºÐâÐÛÞÓ ßÞÛÞÝ"
+  #define ERR_MACOS_GENERIC        "MacOS áÞÞÑéØÛÐ ÞèØÑÚã (%d)"
+  #define ERR_OS2_GENERIC          "OS/2 áÞÞÑéØÛÐ ÞèØÑÚã (%d)"
+  #define ERR_VOL_LOCKED_HW        "ÂÞÜ ÑÛÞÚØàÞÒÐÝ ÐßßÐàÐâÝÞ"
+  #define ERR_VOL_LOCKED_SW        "ÂÞÜ ÑÛÞÚØàÞÒÐÝ ßàÞÓàÐÜÜÝÞ"
+  #define ERR_FILE_LOCKED          "ÄÐÙÛ ×ÐÑÛÞÚØàÞÒÐÝ"
+  #define ERR_FILE_OR_DIR_BUSY     "ÄÐÙÛ/ÚÐâÐÛÞÓ ×ÐÝïâ"
+  #define ERR_FILE_ALREADY_OPEN_W  "ÄÐÙÛ ãÖÕ ÞâÚàëâ ÝÐ ×ÐßØáì"
+  #define ERR_FILE_ALREADY_OPEN_R  "ÄÐÙÛ ãÖÕ ÞâÚàëâ ÝÐ çâÕÝØÕ"
+  #define ERR_INVALID_REFNUM       "½ÕÒÕàÝÞÕ ÚÞÛØçÕáâÒÞ ááëÛÞÚ"
+  #define ERR_GETTING_FILE_POS     "¾èØÑÚÐ ßàØ ßÞÛãçÕÝØØ ßÞ×ØæØØ äÐÙÛÐ"
+  #define ERR_VOLUME_OFFLINE       "ÂÞÜ ÞâáÞÕÔØÝÕÝ"
+  #define ERR_PERMISSION_DENIED    "¾âÚÐ×ÐÝÞ Ò àÐ×àÕèÕÝØØ"
+  #define ERR_VOL_ALREADY_ONLINE   "ÂÞÜ ãÖÕ ßÞÔáÞÕÔØÝÕÝ"
+  #define ERR_NO_SUCH_DRIVE        "½Õâ âÐÚÞÓÞ ÔØáÚÐ"
+  #define ERR_NOT_MAC_DISK         "½Õ ÔØáÚ Macintosh"
+  #define ERR_VOL_EXTERNAL_FS      "ÂÞÜ ßàØÝÐÔÛÕÖØâ ÒÝÕèÝÕÙ äÐÙÛÞÒÞÙ áØáâÕÜÕ"
+  #define ERR_PROBLEM_RENAME       "¿àÞÑÛÕÜÐ ßàØ ßÕàÕØÜÕÝÞÒÐÝØØ"
+  #define ERR_BAD_MASTER_BLOCK     "¿ÛÞåÞÙ ÓÛÐÒÝëÙ ÑÛÞÚ ÚÐâÐÛÞÓÐ"
+  #define ERR_CANT_MOVE_FORBIDDEN  "¿ÞßëâÚÐ ßÕàÕÜÕáâØâì ×ÐßàÕéÕÝÐ"
+  #define ERR_WRONG_VOL_TYPE       "½ÕÒÕàÝëÙ âØß âÞÜÐ"
+  #define ERR_SERVER_VOL_LOST      "ÁÕàÒÕàÝëÙ âÞÜ ÑëÛ ÞâáÞÕÔØÝÕÝ"
+  #define ERR_FILE_ID_NOT_FOUND    "¸ÔÕÝâØäØÚÐâÞà äÐÙÛÐ ÝÕ ÝÐÙÔÕÝ"
+  #define ERR_FILE_ID_EXISTS       "¸ÔÕÝâØäØÚÐâÞà äÐÙÛÐ ãÖÕ áãéÕáâÒãÕâ"
+  #define ERR_SERVER_NO_RESPOND    "ÁÕàÒÕà ÝÕ ÞâÒÕçÐÕâ"
+  #define ERR_USER_AUTH_FAILED     "¸ÔÕÝâØäØÚÐæØï ßÞÛì×ÞÒÐâÕÛï ÝÕ ãÔÐÛÐáì"
+  #define ERR_PWORD_EXPIRED        "¿ÐàÞÛì ÝÐ áÕàÒÕàÕ ãáâÐàÕÛ"
+  #define ERR_ACCESS_DENIED        "¾âÚÐ×ÐÝÞ Ò ÔÞáâãßÕ"
+  #define ERR_NOT_A_DOS_DISK       "½Õ ÔØáÚ DOS"
+  #define ERR_SHARING_VIOLATION    "½ÐàãèÕÝØÕ áÞÒÜÕáâÝÞÓÞ ÔÞáâãßÐ"
+  #define ERR_CANNOT_MAKE          "½Õ ÜÞÓã áÞÑàÐâì"
+  #define ERR_DEV_IN_USE           "ÃáâàÞÙáâÒÞ ãÖÕ ØáßÞÛì×ãÕâáï"
+  #define ERR_OPEN_FAILED          "¾âÚàëâØÕ ÝÕ ãÔÐÛÞáì"
+  #define ERR_PIPE_BUSY            "ºÞÝÒÕÙÕà ×ÐÝïâ"
+  #define ERR_SHARING_BUF_EXCEEDED "ÀÐ×ÔÕÛïÕÜëÙ ÑãäÕà ßÕàÕßÞÛÝÕÝ"
+  #define ERR_TOO_MANY_HANDLES     "ÁÛØèÚÞÜ ÜÝÞÓÞ ÞâÚàëâëå ÔÕáÚàØßâÞàÞÒ"
+  #define ERR_SEEK_ERROR           "¾èØÑÚÐ ßÞ×ØæØÞÝØàÞÒÐÝØï"
+  #define ERR_DEL_CWD              "¿ÞßëâÚÐ ãÔÐÛØâì âÕÚãéØÙ àÐÑÞçØÙ ÚÐâÐÛÞÓ"
+  #define ERR_WRITE_PROTECT_ERROR  "¾èØÑÚÐ ×ÐéØâë ×ÐßØáØ"
+  #define ERR_WRITE_FAULT          "¾èØÑÚÐ ×ÐßØáØ"
+  #define ERR_LOCK_VIOLATION       "½ÐàãèÕÝØÕ ÑÛÞÚØàÞÒÚØ"
+  #define ERR_GEN_FAILURE          "¾ÑéØÙ áÑÞÙ"
+  #define ERR_UNCERTAIN_MEDIA      "½ÕÞßàÕÔÕÛÕÝÝëÙ ÝÞáØâÕÛì"
+  #define ERR_PROT_VIOLATION       "½ÐàãèÕÝØÕ ×ÐéØâë"
+  #define ERR_BROKEN_PIPE          "ÁÛÞÜÐÝÝëÙ ÚÞÝÒÕÙÕà"
+ 
+ #elif (PHYSFS_LANG == PHYSFS_LANG_SPANISH)
+  #define DIR_ARCHIVE_DESCRIPTION  "No es un archivo, E/S directa al sistema 
de ficheros"
+  #define GRP_ARCHIVE_DESCRIPTION  "Formato Build engine Groupfile"
+  #define ZIP_ARCHIVE_DESCRIPTION  "Compatible con PkZip/WinZip/Info-Zip"
+ 
+  #define ERR_IS_INITIALIZED       "Ya estaba inicializado"
+  #define ERR_NOT_INITIALIZED      "No está inicializado"
+  #define ERR_INVALID_ARGUMENT     "Argumento inválido"
+  #define ERR_FILES_STILL_OPEN     "Archivos aún abiertos"
+  #define ERR_NO_DIR_CREATE        "Fallo al crear los directorios"
+  #define ERR_OUT_OF_MEMORY        "Memoria agotada"
+  #define ERR_NOT_IN_SEARCH_PATH   "No existe tal entrada en la ruta de 
búsqueda"
+  #define ERR_NOT_SUPPORTED        "Operación no soportada"
+  #define ERR_UNSUPPORTED_ARCHIVE  "Tipo de archivo no soportado"
+  #define ERR_NOT_A_HANDLE         "No es un manejador de ficheo (file handle)"
+  #define ERR_INSECURE_FNAME       "Nombre de archivo inseguro"
+  #define ERR_SYMLINK_DISALLOWED   "Los enlaces simbólicos están desactivados"
+  #define ERR_NO_WRITE_DIR         "No has configurado un directorio de 
escritura"
+  #define ERR_NO_SUCH_FILE         "Archivo no encontrado"
+  #define ERR_NO_SUCH_PATH         "Ruta no encontrada"
+  #define ERR_NO_SUCH_VOLUME       "Volumen no encontrado"
+  #define ERR_PAST_EOF             "Te pasaste del final del archivo"
+  #define ERR_ARC_IS_READ_ONLY     "El archivo es de sólo lectura"
+  #define ERR_IO_ERROR             "Error E/S"
+  #define ERR_CANT_SET_WRITE_DIR   "No puedo configurar el directorio de 
escritura"
+  #define ERR_SYMLINK_LOOP         "Bucle infnito de enlaces simbólicos"
+  #define ERR_COMPRESSION          "Error de (des)compresión"
+  #define ERR_NOT_IMPLEMENTED      "No implementado"
+  #define ERR_OS_ERROR             "El sistema operativo ha devuelto un error"
+  #define ERR_FILE_EXISTS          "El archivo ya existe"
+  #define ERR_NOT_A_FILE           "No es un archivo"
+  #define ERR_NOT_A_DIR            "No es un directorio"
+  #define ERR_NOT_AN_ARCHIVE       "No es un archivo"
+  #define ERR_CORRUPTED            "Archivo corrupto"
+  #define ERR_SEEK_OUT_OF_RANGE    "Búsqueda fuera de rango"
+  #define ERR_BAD_FILENAME         "Nombre de archivo incorrecto"
+  #define ERR_PHYSFS_BAD_OS_CALL   "(BUG) PhysicsFS ha hecho una llamada 
incorrecta al sistema"
+  #define ERR_ARGV0_IS_NULL        "argv0 es NULL"
+  #define ERR_ZLIB_NEED_DICT       "zlib: necesito diccionario"
+  #define ERR_ZLIB_DATA_ERROR      "zlib: error de datos"
+  #define ERR_ZLIB_MEMORY_ERROR    "zlib: error de memoria"
+  #define ERR_ZLIB_BUFFER_ERROR    "zlib: error de buffer"
+  #define ERR_ZLIB_VERSION_ERROR   "zlib: error de versión"
+  #define ERR_ZLIB_UNKNOWN_ERROR   "zlib: error desconocido"
+  #define ERR_SEARCHPATH_TRUNC     "La ruta de búsqueda ha sido truncada"
+  #define ERR_GETMODFN_TRUNC       "GetModuleFileName() ha sido truncado"
+  #define ERR_GETMODFN_NO_DIR      "GetModuleFileName() no tenia directorio"
+  #define ERR_DISK_FULL            "El disco está lleno"
+  #define ERR_DIRECTORY_FULL       "El directorio está lleno"
+  #define ERR_MACOS_GENERIC        "MacOS ha devuelto un error (%d)"
+  #define ERR_OS2_GENERIC          "OS/2 ha devuelto un error (%d)"
+  #define ERR_VOL_LOCKED_HW        "El volumen está bloqueado por el hardware"
+  #define ERR_VOL_LOCKED_SW        "El volumen está bloqueado por el software"
+  #define ERR_FILE_LOCKED          "El archivo está bloqueado"
+  #define ERR_FILE_OR_DIR_BUSY     "Fichero o directorio ocupados"
+  #define ERR_FILE_ALREADY_OPEN_W  "Fichero ya abierto para escritura"
+  #define ERR_FILE_ALREADY_OPEN_R  "Fichero ya abierto para lectura"
+  #define ERR_INVALID_REFNUM       "El número de referencia no es válido"
+  #define ERR_GETTING_FILE_POS     "Error al tomar la posición del fichero"
+  #define ERR_VOLUME_OFFLINE       "El volumen está desconectado"
+  #define ERR_PERMISSION_DENIED    "Permiso denegado"
+  #define ERR_VOL_ALREADY_ONLINE   "El volumen ya estaba conectado"
+  #define ERR_NO_SUCH_DRIVE        "No existe tal unidad"
+  #define ERR_NOT_MAC_DISK         "No es un disco Macintosh"
+  #define ERR_VOL_EXTERNAL_FS      "El volumen pertence a un sistema de 
ficheros externo"
+  #define ERR_PROBLEM_RENAME       "Problemas al renombrar"
+  #define ERR_BAD_MASTER_BLOCK     "Bloque maestro de directorios incorrecto"
+  #define ERR_CANT_MOVE_FORBIDDEN  "Intento de mover forbidden"
+  #define ERR_WRONG_VOL_TYPE       "Tipo de volumen incorrecto"
+  #define ERR_SERVER_VOL_LOST      "El servidor de volúmenes ha sido 
desconectado"
+  #define ERR_FILE_ID_NOT_FOUND    "Identificador de archivo no encontrado"
+  #define ERR_FILE_ID_EXISTS       "El identificador de archivo ya existe"
+  #define ERR_SERVER_NO_RESPOND    "El servidor no responde"
+  #define ERR_USER_AUTH_FAILED     "Fallo al autentificar el usuario"
+  #define ERR_PWORD_EXPIRED        "La Password  en el servidor ha caducado"
+  #define ERR_ACCESS_DENIED        "Acceso denegado"
+  #define ERR_NOT_A_DOS_DISK       "No es un disco de DOS"
+  #define ERR_SHARING_VIOLATION    "Violación al compartir"
+  #define ERR_CANNOT_MAKE          "No puedo hacer make"
+  #define ERR_DEV_IN_USE           "El dispositivo ya estaba en uso"
+  #define ERR_OPEN_FAILED          "Fallo al abrir"
+  #define ERR_PIPE_BUSY            "Tubería ocupada"
+  #define ERR_SHARING_BUF_EXCEEDED "Buffer de compartición sobrepasado"
+  #define ERR_TOO_MANY_HANDLES     "Demasiados manejadores (handles)"
+  #define ERR_SEEK_ERROR           "Error de búsqueda"
+  #define ERR_DEL_CWD              "Intentando borrar el directorio de trabajo 
actual"
+  #define ERR_WRITE_PROTECT_ERROR  "Error de protección contra escritura"
+  #define ERR_WRITE_FAULT          "Fallo al escribir"
+  #define ERR_LOCK_VIOLATION       "Violación del bloqueo"
+  #define ERR_GEN_FAILURE          "Fallo general"
+  #define ERR_UNCERTAIN_MEDIA      "Medio incierto"
+  #define ERR_PROT_VIOLATION       "Violación de la protección"
+  #define ERR_BROKEN_PIPE          "Tubería rota"
+ 
+ #elif (PHYSFS_LANG == PHYSFS_LANG_FRENCH)
+  #define DIR_ARCHIVE_DESCRIPTION  "Pas d'archive, E/S directes sur système de 
fichiers"
+  #define GRP_ARCHIVE_DESCRIPTION  "Format Groupfile du moteur Build"
+  #define ZIP_ARCHIVE_DESCRIPTION  "Compatible PkZip/WinZip/Info-Zip"
+ 
+  #define ERR_IS_INITIALIZED       "Déjà initialisé"
+  #define ERR_NOT_INITIALIZED      "Non initialisé"
+  #define ERR_INVALID_ARGUMENT     "Argument invalide"
+  #define ERR_FILES_STILL_OPEN     "Fichiers encore ouverts"
+  #define ERR_NO_DIR_CREATE        "Echec de la création de répertoires"
+  #define ERR_OUT_OF_MEMORY        "A court de mémoire"
+  #define ERR_NOT_IN_SEARCH_PATH   "Aucune entrée dans le chemin de recherche"
+  #define ERR_NOT_SUPPORTED        "Opération non supportée"
+  #define ERR_UNSUPPORTED_ARCHIVE  "Type d'archive non supportée"
+  #define ERR_NOT_A_HANDLE         "Pas un descripteur de fichier"
+  #define ERR_INSECURE_FNAME       "Nom de fichier dangereux"
+  #define ERR_SYMLINK_DISALLOWED   "Les liens symboliques sont désactivés"
+  #define ERR_NO_WRITE_DIR         "Le répertoire d'écriture n'est pas 
spécifié"
+  #define ERR_NO_SUCH_FILE         "Fichier non trouvé"
+  #define ERR_NO_SUCH_PATH         "Chemin non trouvé"
+  #define ERR_NO_SUCH_VOLUME       "Volume non trouvé"
+  #define ERR_PAST_EOF             "Au-delà de la fin du fichier"
+  #define ERR_ARC_IS_READ_ONLY     "L'archive est en lecture seule"
+  #define ERR_IO_ERROR             "Erreur E/S"
+  #define ERR_CANT_SET_WRITE_DIR   "Ne peut utiliser le répertoire d'écriture"
+  #define ERR_SYMLINK_LOOP         "Boucle infinie dans les liens symboliques"
+  #define ERR_COMPRESSION          "Erreur de (dé)compression"
+  #define ERR_NOT_IMPLEMENTED      "Non implémenté"
+  #define ERR_OS_ERROR             "Erreur rapportée par le système 
d'exploitation"
+  #define ERR_FILE_EXISTS          "Le fichier existe déjà"
+  #define ERR_NOT_A_FILE           "Pas un fichier"
+  #define ERR_NOT_A_DIR            "Pas un répertoire"
+  #define ERR_NOT_AN_ARCHIVE       "Pas une archive"
+  #define ERR_CORRUPTED            "Archive corrompue"
+  #define ERR_SEEK_OUT_OF_RANGE    "Pointeur de fichier hors de portée"
+  #define ERR_BAD_FILENAME         "Mauvais nom de fichier"
+  #define ERR_PHYSFS_BAD_OS_CALL   "(BOGUE) PhysicsFS a fait un mauvais appel 
système, le salaud"
+  #define ERR_ARGV0_IS_NULL        "argv0 est NULL"
+  #define ERR_ZLIB_NEED_DICT       "zlib: a besoin du dico"
+  #define ERR_ZLIB_DATA_ERROR      "zlib: erreur de données"
+  #define ERR_ZLIB_MEMORY_ERROR    "zlib: erreur mémoire"
+  #define ERR_ZLIB_BUFFER_ERROR    "zlib: erreur tampon"
+  #define ERR_ZLIB_VERSION_ERROR   "zlib: erreur de version"
+  #define ERR_ZLIB_UNKNOWN_ERROR   "zlib: erreur inconnue"
+  #define ERR_SEARCHPATH_TRUNC     "Le chemin de recherche a été tronqué"
+  #define ERR_GETMODFN_TRUNC       "GetModuleFileName() a été tronqué"
+  #define ERR_GETMODFN_NO_DIR      "GetModuleFileName() n'a pas de répertoire"
+  #define ERR_DISK_FULL            "Disque plein"
+  #define ERR_DIRECTORY_FULL       "Répertoire plein"
+  #define ERR_MACOS_GENERIC        "Erreur rapportée par MacOS (%d)"
+  #define ERR_OS2_GENERIC          "Erreur rapportée par OS/2 (%d)"
+  #define ERR_VOL_LOCKED_HW        "Le volume est verrouillé matériellement"
+  #define ERR_VOL_LOCKED_SW        "Le volume est verrouillé par logiciel"
+  #define ERR_FILE_LOCKED          "Fichier verrouillé"
+  #define ERR_FILE_OR_DIR_BUSY     "Fichier/répertoire occupé"
+  #define ERR_FILE_ALREADY_OPEN_W  "Fichier déjà ouvert en écriture"
+  #define ERR_FILE_ALREADY_OPEN_R  "Fichier déjà ouvert en lecture"
+  #define ERR_INVALID_REFNUM       "Numéro de référence invalide"
+  #define ERR_GETTING_FILE_POS     "Erreur lors de l'obtention de la position 
du pointeur de fichier"
+  #define ERR_VOLUME_OFFLINE       "Le volume n'est pas en ligne"
+  #define ERR_PERMISSION_DENIED    "Permission refusée"
+  #define ERR_VOL_ALREADY_ONLINE   "Volumé déjà en ligne"
+  #define ERR_NO_SUCH_DRIVE        "Lecteur inexistant"
+  #define ERR_NOT_MAC_DISK         "Pas un disque Macintosh"
+  #define ERR_VOL_EXTERNAL_FS      "Le volume appartient à un système de 
fichiers externe"
+  #define ERR_PROBLEM_RENAME       "Problème lors du renommage"
+  #define ERR_BAD_MASTER_BLOCK     "Mauvais block maitre de répertoire"
+  #define ERR_CANT_MOVE_FORBIDDEN  "Essai de déplacement interdit"
+  #define ERR_WRONG_VOL_TYPE       "Mauvais type de volume"
+  #define ERR_SERVER_VOL_LOST      "Le volume serveur a été déconnecté"
+  #define ERR_FILE_ID_NOT_FOUND    "Identificateur de fichier non trouvé"
+  #define ERR_FILE_ID_EXISTS       "Identificateur de fichier existe déjà"
+  #define ERR_SERVER_NO_RESPOND    "Le serveur ne répond pas"
+  #define ERR_USER_AUTH_FAILED     "Authentification de l'utilisateur échouée"
+  #define ERR_PWORD_EXPIRED        "Le mot de passe a expiré sur le serveur"
+  #define ERR_ACCESS_DENIED        "Accès refusé"
+  #define ERR_NOT_A_DOS_DISK       "Pas un disque DOS"
+  #define ERR_SHARING_VIOLATION    "Violation de partage"
+  #define ERR_CANNOT_MAKE          "Ne peut faire"
+  #define ERR_DEV_IN_USE           "Périphérique déjà en utilisation"
+  #define ERR_OPEN_FAILED          "Ouverture échouée"
+  #define ERR_PIPE_BUSY            "Le tube est occupé"
+  #define ERR_SHARING_BUF_EXCEEDED "Tampon de partage dépassé"
+  #define ERR_TOO_MANY_HANDLES     "Trop de descripteurs ouverts"
+  #define ERR_SEEK_ERROR           "Erreur de positionement"
+  #define ERR_DEL_CWD              "Essai de supprimer le répertoire courant"
+  #define ERR_WRITE_PROTECT_ERROR  "Erreur de protection en écriture"
+  #define ERR_WRITE_FAULT          "Erreur d'écriture"
+  #define ERR_LOCK_VIOLATION       "Violation de verrou"
+  #define ERR_GEN_FAILURE          "Echec général"
+  #define ERR_UNCERTAIN_MEDIA      "Média incertain"
+  #define ERR_PROT_VIOLATION       "Violation de protection"
+  #define ERR_BROKEN_PIPE          "Tube cassé"
+ 
+ #else
+  #error Please define PHYSFS_LANG.
+ #endif
+ 
+ /* end LANG section. */
+ 
+ 
  struct __PHYSFS_DIRHANDLE__;
  struct __PHYSFS_FILEFUNCTIONS__;
***************
*** 126,129 ****
--- 807,812 ----
  typedef struct __PHYSFS_DIRFUNCTIONS__
  {
+     const PHYSFS_ArchiveInfo *info;
+ 
          /*
           * Returns non-zero if (filename) is a valid archive that this
***************
*** 249,282 ****
      void (*dirClose)(DirHandle *r);
  } DirFunctions;
- 
- 
- /* error messages... */
- #define ERR_IS_INITIALIZED       "Already initialized"
- #define ERR_NOT_INITIALIZED      "Not initialized"
- #define ERR_INVALID_ARGUMENT     "Invalid argument"
- #define ERR_FILES_STILL_OPEN     "Files still open"
- #define ERR_NO_DIR_CREATE        "Failed to create directories"
- #define ERR_OUT_OF_MEMORY        "Out of memory"
- #define ERR_NOT_IN_SEARCH_PATH   "No such entry in search path"
- #define ERR_NOT_SUPPORTED        "Operation not supported"
- #define ERR_UNSUPPORTED_ARCHIVE  "Archive type unsupported"
- #define ERR_NOT_A_HANDLE         "Not a file handle"
- #define ERR_INSECURE_FNAME       "Insecure filename"
- #define ERR_SYMLINK_DISALLOWED   "Symbolic links are disabled"
- #define ERR_NO_WRITE_DIR         "Write directory is not set"
- #define ERR_NO_SUCH_FILE         "No such file"
- #define ERR_PAST_EOF             "Past end of file"
- #define ERR_ARC_IS_READ_ONLY     "Archive is read-only"
- #define ERR_IO_ERROR             "I/O error"
- #define ERR_CANT_SET_WRITE_DIR   "Can't set write directory"
- #define ERR_SYMLINK_LOOP         "Infinite symbolic link loop"
- #define ERR_COMPRESSION          "(De)compression error"
- #define ERR_NOT_IMPLEMENTED      "Not implemented"
- #define ERR_OS_ERROR             "Operating system reported error"
- #define ERR_FILE_EXISTS          "File already exists"
- #define ERR_NOT_A_DIR            "Not a directory"
- #define ERR_FILE_NOT_FOUND       "File not found"
- #define ERR_NOT_AN_ARCHIVE       "Not an archive"
- #define ERR_CORRUPTED            "Corrupted archive"
  
  
--- 932,935 ----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]