Comment tweaks (FIXME additions, typo corrections, etc).
This commit is contained in:
parent
16ee8355db
commit
1ed8bc07c0
|
@ -3384,8 +3384,15 @@ typedef struct PHYSFS_Archiver
|
||||||
* This is used to identify your archive, and is returned in
|
* This is used to identify your archive, and is returned in
|
||||||
* PHYSFS_supportedArchiveTypes().
|
* PHYSFS_supportedArchiveTypes().
|
||||||
*/
|
*/
|
||||||
|
// !! FIXME: should this be const?
|
||||||
const PHYSFS_ArchiveInfo info;
|
const PHYSFS_ArchiveInfo info;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* !!! FIXME: document me.
|
||||||
|
*/
|
||||||
|
int supportsSymlinks;
|
||||||
|
|
||||||
|
// !!! FIXME: documentation: \brief?
|
||||||
/**
|
/**
|
||||||
* \brief
|
* \brief
|
||||||
*
|
*
|
||||||
|
|
|
@ -548,11 +548,11 @@ void *__PHYSFS_platformGetThreadID(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Enumerate a directory of files. This follows the rules for the
|
* 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
|
* (dirName) that is passed to this function is converted to
|
||||||
* platform-DEPENDENT notation by the caller. The PHYSFS_Archiver version
|
* platform-DEPENDENT notation by the caller. The PHYSFS_Archiver version
|
||||||
* uses platform-independent notation. Note that ".", "..", and other
|
* 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,
|
void __PHYSFS_platformEnumerateFiles(const char *dirname,
|
||||||
PHYSFS_EnumFilesCallback callback,
|
PHYSFS_EnumFilesCallback callback,
|
||||||
|
|
Loading…
Reference in New Issue