fix documentation

SVN revision: 37117
This commit is contained in:
Vincent Torri 2008-10-26 08:10:25 +00:00
parent 9be35d243b
commit 9c0e553fdf
2 changed files with 9 additions and 9 deletions

View File

@ -1,15 +1,15 @@
PROJECT_NAME = Embryo
PROJECT_NUMBER =
OUTPUT_DIRECTORY = doc
INPUT = embryo.c.in src/lib/
IMAGE_PATH = doc/img
OUTPUT_DIRECTORY = .
INPUT = embryo.dox ../src/lib/
IMAGE_PATH = img
OUTPUT_LANGUAGE = English
GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_FILE_EXTENSION = .html
HTML_HEADER = doc/head.html
HTML_FOOTER = doc/foot.html
HTML_STYLESHEET = doc/e.css
HTML_HEADER = head.html
HTML_FOOTER = foot.html
HTML_STYLESHEET = e.css
HTML_ALIGN_MEMBERS = YES
ENUM_VALUES_PER_LINE = 1
GENERATE_HTMLHELP = NO

View File

@ -2,8 +2,8 @@
@mainpage Embryo Library Documentation
@image html embryo.png
@version 0.0.1
@author Carsten Haitzler <raster@rasterman.com>
@version @PACKAGE_VERSION@
@author Carsten Haitzler <raster\@rasterman.com>
@date 2004
@ -74,7 +74,7 @@ for example: @code public testvar @endcode not:
@subsection Small_Constants_Subsection Constants
You can declare constants in two ways:
@li Using the preprocessor macro @c #define.
@li Using the preprocessor macro @c \#define.
@li By inserting @c const between the keyword and variable name of a
variable declaration. For example, to declare the variable @c var1
constant, you type @code new const var1 = 2 @endcode Now @c var1