fb-doc  0.4.0
FreeBASIC documentation tool
fbdoc_doxyfile.bi
Go to the documentation of this file.
1 
8 
9 
10 
17 ENUM DoxyTags
24  INPUT_TAG
25  RECURSIVE
31  XML_OUTPUT
32 END ENUM
33 
34 
35 '&typedef DoxyUDT* DoxyUDT_PTR; //!< Doxygen internal (ignore this).
36 
46 TYPE DoxyUDT
47  AS INTEGER Length
48  AS UBYTE PTR Buffer
49  AS ZSTRING PTR _
50  Doxy = @"empty"
51  AS STRING _
52  Errr _
53  , Tags(XML_OUTPUT)
54 
55  DECLARE CONSTRUCTOR(BYREF AS STRING)
56  DECLARE DESTRUCTOR()
57  DECLARE FUNCTION Search(BYREF AS STRING, BYREF AS INTEGER) AS STRING
58  DECLARE PROPERTY Tag(BYVAL AS INTEGER) AS STRING
59 END TYPE
60