Comment tweaks (FIXME additions, typo corrections, etc).
--- a/src/physfs.h Thu Nov 29 11:47:16 2012 -0500
+++ b/src/physfs.h Thu Nov 29 11:48:48 2012 -0500
@@ -3384,9 +3384,16 @@
* 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
*
* Open an archive provided by (io).
--- a/src/physfs_internal.h Thu Nov 29 11:47:16 2012 -0500
+++ b/src/physfs_internal.h Thu Nov 29 11:48:48 2012 -0500
@@ -548,11 +548,11 @@
/*
* 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,