* externalSubset: * @ctx: the user data (XML parser context) * @name: the root element name * @ExternalID: the external ID * @SystemID: the SYSTEM ID (e.g. filename or URL) * * Callback on external subset declaration. * DEPRECATED: use xmlSAX2ExternalSubset() */
| 905 | * DEPRECATED: use xmlSAX2ExternalSubset() |
| 906 | */ |
| 907 | void |
| 908 | externalSubset(void *ctx, const xmlChar * name, |
| 909 | const xmlChar * ExternalID, const xmlChar * SystemID) |
| 910 | { |
| 911 | DEPRECATED("externalSubset") |
| 912 | xmlSAX2ExternalSubset(ctx, name, ExternalID, SystemID); |
| 913 | } |
| 914 | |
| 915 | /** |
| 916 | * resolveEntity: |
nothing calls this directly
no test coverage detected