Comment tweaks (FIXME additions, typo corrections, etc).

This commit is contained in:
Ryan C. Gordon 2012-11-29 11:48:48 -05:00
parent 16ee8355db
commit 1ed8bc07c0
2 changed files with 9 additions and 2 deletions

View File

@ -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
*

View File

@ -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,