Arghh !! I have lost one night of work for this doxy error. Please, please, please update doxy when you make changes.

SVN revision: 33190
This commit is contained in:
Davide Andreoli 2007-12-20 00:13:13 +00:00
parent 04f9c1326c
commit 69981c27b9
1 changed files with 5 additions and 1 deletions

View File

@ -137,7 +137,7 @@ extern "C" {
/**
* Open an eet file on disk, and returns a handle to it.
* @param file The file path to the eet file. eg: "/tmp/file.eet".
* @param mode The mode for opening. Either EET_FILE_MODE_READ or EET_FILE_MODE_WRITE, but not both.
* @param mode The mode for opening. Either EET_FILE_MODE_READ, EET_FILE_MODE_WRITE or EET_FILE_MODE_READ_WRITE.
* @return An opened eet file handle.
*
* This function will open an exiting eet file for reading, and build
@ -150,6 +150,10 @@ extern "C" {
* the eet file handle is closed or flushed. If it cannot be opened for
* writing or a memory error occurs, NULL is returned.
*
* You can also open the file for read/write. If you then write a key that
* not exist it will be created, if the key exist it will be replaced by
* the new data.
*
* Example:
* @code
* #include <Eet.h>