use INPUT entry of Doxyfile instead of adding Eet.h at the end of eet.c, update the date. remove trailing spaces. Maybe we should add Cedric as author

SVN revision: 34140
This commit is contained in:
doursse 2008-03-29 08:39:22 +00:00 committed by doursse
parent 2e5c629667
commit b856c1bc13
3 changed files with 9 additions and 15 deletions

View File

@ -1,7 +1,7 @@
PROJECT_NAME = Eet
PROJECT_NUMBER =
OUTPUT_DIRECTORY = doc
INPUT = eet.c
INPUT = eet.c src/lib/Eet.h
IMAGE_PATH = doc/img
OUTPUT_LANGUAGE = English
GENERATE_HTML = YES

View File

@ -1,7 +1,7 @@
/**
@file
/**
@file eet.c
@brief Eet Data Handling Library Public API Calls
These routines are used for Eet Library interaction
*/
@ -9,9 +9,9 @@ These routines are used for Eet Library interaction
@mainpage Eet Library Documentation
@image html eet.png
@version @VERSION@
@author Carsten Haitzler <raster@rasterman.com>
@date 2000-2004
@version @PACKAGE_VERSION@
@author Carsten Haitzler <raster\@rasterman.com>
@date 2000-2008
@ -71,14 +71,14 @@ main(int argc, char **argv)
};
eet_init();
// blindly open an file for output and write strings with their NUL char
ef = eet_open("test.eet", EET_FILE_MODE_WRITE);
eet_write(ef, "Entry 1", entries[0], strlen(entries[0]) + 1, 0);
eet_write(ef, "Entry 2", entries[1], strlen(entries[1]) + 1, 1);
eet_write(ef, "Entry 3", entries[2], strlen(entries[2]) + 1, 0);
eet_close(ef);
// open the file again and blindly get the entries we wrote
ef = eet_open("test.eet", EET_FILE_MODE_READ);
ret = eet_read(ef, "Entry 1", &size);

View File

@ -1,10 +1,4 @@
#!/bin/sh
for I in `find ./src/lib -name "Eet.h" -print`; do
cat $I >> ./eet.c
done
#for I in `find ./src/lib -name "*.c" -print`; do
# cat $I >> ./eet.c
#done
rm -rf ./doc/html ./doc/latex ./doc/man
doxygen
cp doc/img/* doc/html/