From 1ed8bc07c00b34b0299d520d9c35be7e41fb87f5 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 29 Nov 2012 11:48:48 -0500 Subject: [PATCH] Comment tweaks (FIXME additions, typo corrections, etc). --- src/physfs.h | 7 +++++++ src/physfs_internal.h | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/physfs.h b/src/physfs.h index 58f9b99..9b274b6 100644 --- a/src/physfs.h +++ b/src/physfs.h @@ -3384,8 +3384,15 @@ typedef struct PHYSFS_Archiver * This is used to identify your archive, and is returned in * PHYSFS_supportedArchiveTypes(). */ +// !! FIXME: should this be const? const PHYSFS_ArchiveInfo info; + /** + * !!! FIXME: document me. + */ + int supportsSymlinks; + +// !!! FIXME: documentation: \brief? /** * \brief * diff --git a/src/physfs_internal.h b/src/physfs_internal.h index d16f02f..a23b776 100644 --- a/src/physfs_internal.h +++ b/src/physfs_internal.h @@ -548,11 +548,11 @@ void *__PHYSFS_platformGetThreadID(void); /* * Enumerate a directory of files. This follows the rules for the - * PHYSFS_Archiver->enumerateFiles() method (see above), except that the + * PHYSFS_Archiver::enumerateFiles() method (see above), except that the * (dirName) that is passed to this function is converted to * platform-DEPENDENT notation by the caller. The PHYSFS_Archiver version * uses platform-independent notation. Note that ".", "..", and other - * metaentries should always be ignored. + * meta-entries should always be ignored. */ void __PHYSFS_platformEnumerateFiles(const char *dirname, PHYSFS_EnumFilesCallback callback,