| OLD | NEW |
| 1 # Doxyfile 1.5.3 | 1 # Doxyfile 1.5.3 |
| 2 | 2 |
| 3 # This file describes the settings to be used by the documentation system | 3 # This file describes the settings to be used by the documentation system |
| 4 # doxygen (www.doxygen.org) for a project | 4 # doxygen (www.doxygen.org) for a project |
| 5 # | 5 # |
| 6 # All text after a hash (#) is considered a comment and will be ignored | 6 # All text after a hash (#) is considered a comment and will be ignored |
| 7 # The format is: | 7 # The format is: |
| 8 # TAG = value [value, ...] | 8 # TAG = value [value, ...] |
| 9 # For lists items can also be appended using: | 9 # For lists items can also be appended using: |
| 10 # TAG += value [value, ...] | 10 # TAG += value [value, ...] |
| 11 # Values that contain spaces should be placed between quotes (" ") | 11 # Values that contain spaces should be placed between quotes (" ") |
| 12 | 12 |
| 13 #--------------------------------------------------------------------------- | 13 #--------------------------------------------------------------------------- |
| 14 # Project related configuration options | 14 # Project related configuration options |
| 15 #--------------------------------------------------------------------------- | 15 #--------------------------------------------------------------------------- |
| 16 | 16 |
| 17 # This tag specifies the encoding used for all characters in the config file tha
t | 17 # This tag specifies the encoding used for all characters in the config file tha
t |
| 18 # follow. The default is UTF-8 which is also the encoding used for all text befo
re | 18 # follow. The default is UTF-8 which is also the encoding used for all text befo
re |
| 19 # the first occurrence of this tag. Doxygen uses libiconv (or the iconv built in
to | 19 # the first occurrence of this tag. Doxygen uses libiconv (or the iconv built in
to |
| 20 # libc) for the transcoding. See http://www.gnu.org/software/libiconv for the li
st of | 20 # libc) for the transcoding. See http://www.gnu.org/software/libiconv for the li
st of |
| 21 # possible encodings. | 21 # possible encodings. |
| 22 | 22 |
| 23 DOXYFILE_ENCODING = UTF-8 | 23 DOXYFILE_ENCODING = UTF-8 |
| 24 | 24 |
| 25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded | 25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded |
| 26 # by quotes) that should identify the project. | 26 # by quotes) that should identify the project. |
| 27 | 27 |
| 28 PROJECT_NAME = libusb | 28 PROJECT_NAME = |
| 29 | 29 |
| 30 # The PROJECT_NUMBER tag can be used to enter a project or revision number. | 30 # The PROJECT_NUMBER tag can be used to enter a project or revision number. |
| 31 # This could be handy for archiving the generated documentation or | 31 # This could be handy for archiving the generated documentation or |
| 32 # if some version control system is used. | 32 # if some version control system is used. |
| 33 | 33 |
| 34 PROJECT_NUMBER = | 34 PROJECT_NUMBER = |
| 35 |
| 36 # Using the PROJECT_BRIEF tag one can provide an optional one line description |
| 37 # for a project that appears at the top of each page and should give viewer a |
| 38 # quick idea about the purpose of the project. Keep the description short. |
| 39 |
| 40 PROJECT_BRIEF = "eXpand your USB potential" |
| 41 |
| 42 # With the PROJECT_LOGO tag one can specify an logo or icon that is included |
| 43 # in the documentation. The maximum height of the logo should not exceed 55 |
| 44 # pixels and the maximum width should not exceed 200 pixels. Doxygen will |
| 45 # copy the logo to the output directory. |
| 46 |
| 47 PROJECT_LOGO = libusbx.png |
| 35 | 48 |
| 36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) | 49 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) |
| 37 # base path where the generated documentation will be put. | 50 # base path where the generated documentation will be put. |
| 38 # If a relative path is entered, it will be relative to the location | 51 # If a relative path is entered, it will be relative to the location |
| 39 # where doxygen was started. If left blank the current directory will be used. | 52 # where doxygen was started. If left blank the current directory will be used. |
| 40 | 53 |
| 41 OUTPUT_DIRECTORY = | 54 OUTPUT_DIRECTORY = |
| 42 | 55 |
| 43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create | 56 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create |
| 44 # 4096 sub-directories (in 2 levels) under the output directory of each output | 57 # 4096 sub-directories (in 2 levels) under the output directory of each output |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 QT_AUTOBRIEF = NO | 160 QT_AUTOBRIEF = NO |
| 148 | 161 |
| 149 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen | 162 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen |
| 150 # treat a multi-line C++ special comment block (i.e. a block of //! or /// | 163 # treat a multi-line C++ special comment block (i.e. a block of //! or /// |
| 151 # comments) as a brief description. This used to be the default behaviour. | 164 # comments) as a brief description. This used to be the default behaviour. |
| 152 # The new default is to treat a multi-line C++ comment block as a detailed | 165 # The new default is to treat a multi-line C++ comment block as a detailed |
| 153 # description. Set this tag to YES if you prefer the old behaviour instead. | 166 # description. Set this tag to YES if you prefer the old behaviour instead. |
| 154 | 167 |
| 155 MULTILINE_CPP_IS_BRIEF = NO | 168 MULTILINE_CPP_IS_BRIEF = NO |
| 156 | 169 |
| 157 # If the DETAILS_AT_TOP tag is set to YES then Doxygen | |
| 158 # will output the detailed description near the top, like JavaDoc. | |
| 159 # If set to NO, the detailed description appears after the member | |
| 160 # documentation. | |
| 161 | |
| 162 DETAILS_AT_TOP = NO | |
| 163 | |
| 164 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented | 170 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented |
| 165 # member inherits the documentation from any documented member that it | 171 # member inherits the documentation from any documented member that it |
| 166 # re-implements. | 172 # re-implements. |
| 167 | 173 |
| 168 INHERIT_DOCS = YES | 174 INHERIT_DOCS = YES |
| 169 | 175 |
| 170 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce | 176 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce |
| 171 # a new page for each member. If set to NO, the documentation of a member will | 177 # a new page for each member. If set to NO, the documentation of a member will |
| 172 # be part of the file/class/namespace that contains it. | 178 # be part of the file/class/namespace that contains it. |
| 173 | 179 |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 # command in the documentation regardless of this setting. | 400 # command in the documentation regardless of this setting. |
| 395 | 401 |
| 396 MAX_INITIALIZER_LINES = 30 | 402 MAX_INITIALIZER_LINES = 30 |
| 397 | 403 |
| 398 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated | 404 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated |
| 399 # at the bottom of the documentation of classes and structs. If set to YES the | 405 # at the bottom of the documentation of classes and structs. If set to YES the |
| 400 # list will mention the files that were used to generate the documentation. | 406 # list will mention the files that were used to generate the documentation. |
| 401 | 407 |
| 402 SHOW_USED_FILES = YES | 408 SHOW_USED_FILES = YES |
| 403 | 409 |
| 404 # If the sources in your project are distributed over multiple directories | |
| 405 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
| |
| 406 # in the documentation. The default is NO. | |
| 407 | |
| 408 SHOW_DIRECTORIES = NO | |
| 409 | |
| 410 # The FILE_VERSION_FILTER tag can be used to specify a program or script that | 410 # The FILE_VERSION_FILTER tag can be used to specify a program or script that |
| 411 # doxygen should invoke to get the current version for each file (typically from
the | 411 # doxygen should invoke to get the current version for each file (typically from
the |
| 412 # version control system). Doxygen will invoke the program by executing (via | 412 # version control system). Doxygen will invoke the program by executing (via |
| 413 # popen()) the command <command> <input-file>, where <command> is the value of | 413 # popen()) the command <command> <input-file>, where <command> is the value of |
| 414 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file | 414 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file |
| 415 # provided by doxygen. Whatever the program writes to standard output | 415 # provided by doxygen. Whatever the program writes to standard output |
| 416 # is used as the file version. See the manual for examples. | 416 # is used as the file version. See the manual for examples. |
| 417 | 417 |
| 418 FILE_VERSION_FILTER = | 418 FILE_VERSION_FILTER = |
| 419 | 419 |
| 420 #--------------------------------------------------------------------------- | 420 #--------------------------------------------------------------------------- |
| 421 # configuration options related to warning and progress messages | 421 # configuration options related to warning and progress messages |
| 422 #--------------------------------------------------------------------------- | 422 #--------------------------------------------------------------------------- |
| 423 | 423 |
| 424 # The QUIET tag can be used to turn on/off the messages that are generated | 424 # The QUIET tag can be used to turn on/off the messages that are generated |
| 425 # by doxygen. Possible values are YES and NO. If left blank NO is used. | 425 # by doxygen. Possible values are YES and NO. If left blank NO is used. |
| 426 | 426 |
| 427 QUIET = NO | 427 QUIET = YES |
| 428 | 428 |
| 429 # The WARNINGS tag can be used to turn on/off the warning messages that are | 429 # The WARNINGS tag can be used to turn on/off the warning messages that are |
| 430 # generated by doxygen. Possible values are YES and NO. If left blank | 430 # generated by doxygen. Possible values are YES and NO. If left blank |
| 431 # NO is used. | 431 # NO is used. |
| 432 | 432 |
| 433 WARNINGS = YES | 433 WARNINGS = YES |
| 434 | 434 |
| 435 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings | 435 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings |
| 436 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will | 436 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will |
| 437 # automatically be disabled. | 437 # automatically be disabled. |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 # The RECURSIVE tag can be used to turn specify whether or not subdirectories | 498 # The RECURSIVE tag can be used to turn specify whether or not subdirectories |
| 499 # should be searched for input files as well. Possible values are YES and NO. | 499 # should be searched for input files as well. Possible values are YES and NO. |
| 500 # If left blank NO is used. | 500 # If left blank NO is used. |
| 501 | 501 |
| 502 RECURSIVE = NO | 502 RECURSIVE = NO |
| 503 | 503 |
| 504 # The EXCLUDE tag can be used to specify files and/or directories that should | 504 # The EXCLUDE tag can be used to specify files and/or directories that should |
| 505 # excluded from the INPUT source files. This way you can easily exclude a | 505 # excluded from the INPUT source files. This way you can easily exclude a |
| 506 # subdirectory from a directory tree whose root is specified with the INPUT tag. | 506 # subdirectory from a directory tree whose root is specified with the INPUT tag. |
| 507 | 507 |
| 508 EXCLUDE = @top_srcdir@/libusb/libusbi.h | 508 EXCLUDE = @top_srcdir@/libusb/libusbi.h @top_srcdir@/libusb/hotpl
ug.h |
| 509 | 509 |
| 510 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or | 510 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or |
| 511 # directories that are symbolic links (a Unix filesystem feature) are excluded | 511 # directories that are symbolic links (a Unix filesystem feature) are excluded |
| 512 # from the input. | 512 # from the input. |
| 513 | 513 |
| 514 EXCLUDE_SYMLINKS = NO | 514 EXCLUDE_SYMLINKS = NO |
| 515 | 515 |
| 516 # If the value of the INPUT tag contains directories, you can use the | 516 # If the value of the INPUT tag contains directories, you can use the |
| 517 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude | 517 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude |
| 518 # certain files from those directories. Note that the wildcards are matched | 518 # certain files from those directories. Note that the wildcards are matched |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 | 694 |
| 695 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading | 695 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading |
| 696 # style sheet that is used by each HTML page. It can be used to | 696 # style sheet that is used by each HTML page. It can be used to |
| 697 # fine-tune the look of the HTML output. If the tag is left blank doxygen | 697 # fine-tune the look of the HTML output. If the tag is left blank doxygen |
| 698 # will generate a default style sheet. Note that doxygen will try to copy | 698 # will generate a default style sheet. Note that doxygen will try to copy |
| 699 # the style sheet file to the HTML output directory, so don't put your own | 699 # the style sheet file to the HTML output directory, so don't put your own |
| 700 # stylesheet in the HTML output directory as well, or it will be erased! | 700 # stylesheet in the HTML output directory as well, or it will be erased! |
| 701 | 701 |
| 702 HTML_STYLESHEET = | 702 HTML_STYLESHEET = |
| 703 | 703 |
| 704 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, | |
| 705 # files or namespaces will be aligned in HTML using tables. If set to | |
| 706 # NO a bullet list will be used. | |
| 707 | |
| 708 HTML_ALIGN_MEMBERS = YES | |
| 709 | |
| 710 # If the GENERATE_HTMLHELP tag is set to YES, additional index files | 704 # If the GENERATE_HTMLHELP tag is set to YES, additional index files |
| 711 # will be generated that can be used as input for tools like the | 705 # will be generated that can be used as input for tools like the |
| 712 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) | 706 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) |
| 713 # of the generated HTML documentation. | 707 # of the generated HTML documentation. |
| 714 | 708 |
| 715 GENERATE_HTMLHELP = NO | 709 GENERATE_HTMLHELP = NO |
| 716 | 710 |
| 717 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML | 711 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML |
| 718 # documentation will contain sections that can be hidden and shown after the | 712 # documentation will contain sections that can be hidden and shown after the |
| 719 # page has loaded. For this to work a browser that supports | 713 # page has loaded. For this to work a browser that supports |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1285 DOT_CLEANUP = YES | 1279 DOT_CLEANUP = YES |
| 1286 | 1280 |
| 1287 #--------------------------------------------------------------------------- | 1281 #--------------------------------------------------------------------------- |
| 1288 # Configuration::additions related to the search engine | 1282 # Configuration::additions related to the search engine |
| 1289 #--------------------------------------------------------------------------- | 1283 #--------------------------------------------------------------------------- |
| 1290 | 1284 |
| 1291 # The SEARCHENGINE tag specifies whether or not a search engine should be | 1285 # The SEARCHENGINE tag specifies whether or not a search engine should be |
| 1292 # used. If set to NO the values of all tags below this one will be ignored. | 1286 # used. If set to NO the values of all tags below this one will be ignored. |
| 1293 | 1287 |
| 1294 SEARCHENGINE = NO | 1288 SEARCHENGINE = NO |
| OLD | NEW |