<code> inside <function> was supported but missing from the DTD,

added "role" attribute to support "internal" functions like
MINIT and stuff, "private" C functions not to be published as
PHP functions and "public" implemenations of PHP functions
This commit is contained in:
Hartmut Holzgraefe 2003-02-19 14:48:17 +00:00
parent 85f81c6006
commit 714a6d727e

View File

@ -36,11 +36,13 @@
<!ELEMENT notes (#PCDATA)>
<!ELEMENT functions (function)*>
<!ELEMENT function (summary,proto,description*)>
<!ELEMENT function (summary|proto|description|code)*>
<!ATTLIST function
role (internal|private|public) "public"
name CDATA #REQUIRED
>
<!ELEMENT proto (#PCDATA)>
<!ELEMENT code (#PCDATA)>
<!ELEMENT constants (constant)*>
<!ELEMENT constant (#PCDATA)>