fix docs
authorMichael Wallner <mike@php.net>
Wed, 30 Sep 2015 10:39:08 +0000 (12:39 +0200)
committerMichael Wallner <mike@php.net>
Wed, 30 Sep 2015 10:39:08 +0000 (12:39 +0200)
Doxyfile
src/php_propro_api.h

index 3b67c46e7bf993746e94727f89c481e72a084536..d0ed1883c77f2c991034c657cb544dbd4b86f4b9 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -100,7 +100,7 @@ WARN_LOGFILE           =
 #---------------------------------------------------------------------------
 # Configuration options related to the input files
 #---------------------------------------------------------------------------
-INPUT                  = php_propro.h
+INPUT                  = php_propro.h src
 INPUT_ENCODING         = UTF-8
 FILE_PATTERNS          =
 RECURSIVE              = NO
index a2add4fff791527fc18ec396d900da38ce7edc62..e22c239dc2c5bfd1c1c630a873ad7c2f107ce770 100644 (file)
@@ -37,7 +37,7 @@ typedef struct php_property_proxy php_property_proxy_t;
  * member accessible by reference from PHP userland.
  *
  * Example:
- * ~~~~~~~~~~{.c}
+ * \code{.c}
  * static zval *my_read_prop(zval *object, zval *member, int type, zend_literal *key TSRMLS_DC)
  * {
  *     my_object_t *obj = zend_object_store_get_object(object TSRMLS_CC);
@@ -73,7 +73,7 @@ typedef struct php_property_proxy php_property_proxy_t;
  *
  *     return return_value;
  * }
- * ~~~~~~~~~~
+ * \endcode
  */
 struct php_property_proxy_object {
        /** The std zend_object */