diff --git a/legacy/eet/Doxyfile b/legacy/eet/Doxyfile index b786ff6721..45f743b37c 100644 --- a/legacy/eet/Doxyfile +++ b/legacy/eet/Doxyfile @@ -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 diff --git a/legacy/eet/eet.c.in b/legacy/eet/eet.c.in index 78c9e1799e..3d6c02664b 100644 --- a/legacy/eet/eet.c.in +++ b/legacy/eet/eet.c.in @@ -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 -@date 2000-2004 +@version @PACKAGE_VERSION@ +@author Carsten Haitzler +@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); diff --git a/legacy/eet/gendoc b/legacy/eet/gendoc index a9fec6704c..a308a05299 100755 --- a/legacy/eet/gendoc +++ b/legacy/eet/gendoc @@ -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/