-# Doxyfile 1.8.9.1
+# Doxyfile 1.8.10
#---------------------------------------------------------------------------
# Project related configuration options
OPTIMIZE_OUTPUT_JAVA = NO
OPTIMIZE_FOR_FORTRAN = NO
OPTIMIZE_OUTPUT_VHDL = NO
-EXTENSION_MAPPING =
+EXTENSION_MAPPING = no_extension=md
MARKDOWN_SUPPORT = YES
AUTOLINK_SUPPORT = YES
BUILTIN_STL_SUPPORT = NO
SIP_SUPPORT = NO
IDL_PROPERTY_SUPPORT = YES
DISTRIBUTE_GROUP_DOC = NO
+GROUP_NESTED_COMPOUNDS = NO
SUBGROUPING = YES
INLINE_GROUPED_CLASSES = NO
INLINE_SIMPLE_STRUCTS = YES
#---------------------------------------------------------------------------
# Configuration options related to the input files
#---------------------------------------------------------------------------
-INPUT = php_raphf.h
+INPUT = README.md CONTRIBUTING.md php_raphf.h src
INPUT_ENCODING = UTF-8
FILE_PATTERNS =
RECURSIVE = NO
FILTER_PATTERNS =
FILTER_SOURCE_FILES = NO
FILTER_SOURCE_PATTERNS =
-USE_MDFILE_AS_MAINPAGE =
+USE_MDFILE_AS_MAINPAGE = README.md
#---------------------------------------------------------------------------
# Configuration options related to source browsing
#---------------------------------------------------------------------------
HTML_FOOTER =
HTML_STYLESHEET =
HTML_EXTRA_STYLESHEET =
-HTML_EXTRA_FILES =
+HTML_EXTRA_FILES = BUGS CONTRIBUTING.md LICENSE THANKS TODO
HTML_COLORSTYLE_HUE = 220
HTML_COLORSTYLE_SAT = 100
HTML_COLORSTYLE_GAMMA = 80
* ressources.
*
* Example:
- * ~~~~~~~~~~~~~~~{.c}
+ * \code{.c}
* php_resource_factory_t *create_my_rf(const char *persistent_id_str,
* size_t persistent_id_len TSRMLS_DC)
* {
* }
* return rf;
* }
- * ~~~~~~~~~~~~~~~
+ * \endcode
*/
PHP_RAPHF_API php_resource_factory_ops_t *
php_persistent_handle_get_resource_factory_ops(void);
* Retrieve statistics about the current process/thread's persistent handles.
*
* @return a HashTable like:
- * ~~~~~~~~~~~~~~~
+ * \code
* [
* "name" => [
* "ident" => [
* ]
* ]
* ]
- * ~~~~~~~~~~~~~~~
+ * \endcode
*/
PHP_RAPHF_API HashTable *php_persistent_handle_statall(HashTable *ht TSRMLS_DC);