tree.h
Estructura xmlNotation
Una definición de Notación DTD.
Sintaxis
/**
* xmlNotation:
*
* A DTD Notation definition.
*/
typedef struct _xmlNotation xmlNotation;
typedef xmlNotation *xmlNotationPtr;
struct _xmlNotation {
const xmlChar *name; /* Notation name */
const xmlChar *PublicID; /* Public identifier, if any */
const xmlChar *SystemID; /* System identifier, if any */
};
Miembros
- name
- Nombre de la notación.
- PublicID
- Identificador público, en su caso.
- SystemID
- Identificador del sistema, si existe.