X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fphp_propro_api.h;h=a33cd34eb98f9639eec17272a8f000a2667488b7;hb=107ea2284072f3f2bf9ea568ad82c047f8206963;hp=d82055ffa6d5c01b7bb98e02796221a66d2bf2c5;hpb=0ef55616b66a3f554d89142944a9f684f3e78d65;p=m6w6%2Fext-propro diff --git a/src/php_propro_api.h b/src/php_propro_api.h index d82055f..a33cd34 100644 --- a/src/php_propro_api.h +++ b/src/php_propro_api.h @@ -21,7 +21,7 @@ * Container for the object/array holding the proxied property. */ struct php_property_proxy { - /** The container holding the property */ + /** The reference to the container holding the property */ zval container; /** The name of the proxied property */ zend_string *member; @@ -35,7 +35,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, void **cache_slot, zval *tmp) * { * zval *return_value; @@ -59,7 +59,7 @@ typedef struct php_property_proxy php_property_proxy_t; * * return return_value; * } - * ~~~~~~~~~~ + * \endcode */ struct php_property_proxy_object { /** The actual property proxy */