aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rfsv.h
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>2001-02-01 03:30:38 +0000
committerFritz Elfert <felfert@to.com>2001-02-01 03:30:38 +0000
commit922027d66d65c570960234d9f5c32467b487715d (patch)
tree1149b91fd7c5ccd2647772dcc4b1f3da6ac2b1f6 /lib/rfsv.h
parentec88c5051b2a76f05d7b0fc9f9dc12b6db53ec20 (diff)
downloadplptools-922027d66d65c570960234d9f5c32467b487715d.tar.gz
plptools-922027d66d65c570960234d9f5c32467b487715d.tar.bz2
plptools-922027d66d65c570960234d9f5c32467b487715d.zip
Some fixes in documentation.
Diffstat (limited to 'lib/rfsv.h')
-rw-r--r--lib/rfsv.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/rfsv.h b/lib/rfsv.h
index b9279d4..79fbc68 100644
--- a/lib/rfsv.h
+++ b/lib/rfsv.h
@@ -31,7 +31,7 @@ class rfsvDirhandle {
* of a Psion connected via ncpd. This class defines the
* interface and a small amount of common constants and
* methods. The majority of implementation is provided
- * by @ref rfsv32 and @ref rfsv16, which implement the
+ * by @ref rfsv32 and @ref rfsv16 , which implement the
* variations of the protocol for EPOC and SIBO respectively.
* Usually, the class @ref rfsvfactory is used to instantiate
* the correct variant depending on the remote machine,
@@ -193,7 +193,7 @@ class rfsv {
* and @ref open_mode to the machine-specific representation.
* @param name The name of the file to open.
* @param handle The handle for usage with @ref fread ,
- * @ref frwrite , @ref fseek or @ref fclose is returned here.
+ * @ref fwrite , @ref fseek or @ref fclose is returned here.
*
* @returns A Psion error code (One of enum @ref #errs ).
*/
@@ -204,7 +204,7 @@ class rfsv {
* The file is opened for reading and writing.
*
* @param handle The handle for usage with @ref fread ,
- * @ref frwrite , @ref fseek or @ref fclose is returned here.
+ * @ref fwrite , @ref fseek or @ref fclose is returned here.
* @param name The name of the temporary file is returned here.
*
* @returns A Psion error code (One of enum @ref #errs ).
@@ -218,7 +218,7 @@ class rfsv {
* and @ref open_mode to the machine-specific representation.
* @param name The name of the file to create.
* @param handle The handle for usage with @ref fread ,
- * @ref frwrite , @ref fseek or @ref fclose is returned here.
+ * @ref fwrite , @ref fseek or @ref fclose is returned here.
*
* @returns A Psion error code (One of enum @ref #errs ).
*/
@@ -231,7 +231,7 @@ class rfsv {
* and @ref open_mode to the machine-specific representation.
* @param name The name of the file to create.
* @param handle The handle for usage with @ref fread ,
- * @ref frwrite , @ref fseek or @ref fclose is returned here.
+ * @ref fwrite , @ref fseek or @ref fclose is returned here.
*
* @returns A Psion error code (One of enum @ref #errs ).
*/
@@ -247,14 +247,13 @@ class rfsv {
/**
* Reads a directory on the Psion.
- * The returned array of @ref bufferArray contains one @ref bufferStore element
- * for each directory entry. For a description of the layout of the elements
- * in each directory entry, see @ref readdir .
+ * The returned STL deque of @ref PlpDirent contains all
+ * requested directory entries.
*
* @param name The name of the directory
* @param ret An STL deque of @ref PlpDirent entries.
*
- * @returns A Psion error code (One of enum @ref #errs ).
+ * @returns A Psion error code (One of enum @ref rfsv::errs ).
*/
virtual Enum<errs> dir(const char * const name, PlpDir &ret) = 0;
@@ -551,7 +550,7 @@ class rfsv {
* @param mode The generic open mode.
*
* @returns The machine specific representation for use with
- * @ref fopen, @ref fcreatefile and @freplacefile.
+ * @ref fopen , @ref fcreatefile and @freplacefile.
*/
virtual long opMode(const long mode) = 0;
protected: