home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 10 / Fresh_Fish_10_2352.bin / new / dev / lang / sgmls / src / appl.h < prev    next >
C/C++ Source or Header  |  1994-07-10  |  455b  |  32 lines

  1. /* appl.h */
  2.  
  3. enum {
  4.      E_NOMEM = 1,
  5.      E_DOC,
  6.      E_EXEC,
  7.      E_FORK,
  8.      E_WAIT,
  9.      E_SIGNAL,
  10.      E_OPEN,
  11.      E_CAPBOTCH,
  12.      E_SUBDOC
  13. };
  14.  
  15. VOID process_document P((int));
  16. VOID output_conforming P((void));
  17.  
  18. VOID appl_error VP((int, ...));
  19.  
  20. #ifdef SUPPORT_SUBDOC
  21. int run_process P((char **));
  22. char **make_argv P((UNIV));
  23. VOID get_subcaps P((void));
  24. #endif
  25.  
  26. #ifdef SUPPORT_SUBDOC
  27. extern int suberr;
  28. #endif
  29.  
  30. extern int suppsw;
  31. extern int locsw;
  32.