home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / sgml / unix / sgmlh / keyword.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-03  |  1.1 KB  |  25 lines

  1. /******************************************************************************/
  2. /* KEYWORD.H: Definitions for markup declaration keyword processing.
  3. */
  4. /* Default value types for attribute definition list declaration.
  5. */
  6. #define DNULL    1            /* Default value: implied attribute. */
  7. #define DREQ     2            /* Default value: required attribute. */
  8. #define DCURR    3            /* Default value: current attribute. */
  9. #define DCONR    4            /* Default value: content reference attribute. */
  10. #define DFIXED   5            /* Default value: fixed attribute. */
  11.  
  12. /* External identifier types for entity and notation declarations.
  13. */
  14. #define EDSYSTEM  1           /* SYSTEM (but not PUBLIC) identifier specified.*/
  15. #define EDPUBLIC  2           /* PUBLIC (but not SYSTEM) identifier specified.*/
  16. #define EDBOTH    3           /* PUBLIC and also SYSTEM identifiers specified.*/
  17.  
  18. /* Marked section keywords.
  19. */
  20. #define MSTEMP   1
  21. #define MSRCDATA 2
  22. #define MSCDATA  3
  23. #define MSIGNORE 4
  24. /******************************************************************************/
  25.