home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 1.ddi / BPROGCTL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-05  |  1.7 KB  |  45 lines

  1. /**
  2. *
  3. *   BPROGCTL.H -- Header file for C TOOLS PLUS Program Control Functions
  4. *
  5. *   Version 3.0   (C)Copyright Blaise Computing Inc.  1983, 1984, 1985, 1986
  6. *
  7. **/
  8.  
  9. #ifndef DEF_BPROGCTL              /* Prevent redefinition.          */
  10.  
  11. #include <compiler.h>
  12.  
  13. int  pcexec(char *,char *,int);       /* Load and execute a program   */
  14. int  pcdoscmd(char *);              /* Execute a DOS command          */
  15.                       /*                  */
  16. char *pcenvchk(char *,int);          /* Return environment parameter */
  17.                       /*                  */
  18. void pcexit(unsigned);              /* Terminate and set error code */
  19. int  pcwait(int *);              /* Inspect child's error code   */
  20. void pcresext(int);              /* Exit but stay resident       */
  21. int  pcremove(unsigned);          /* Remove resident program      */
  22.  
  23.     /* Aliases for former names                       */
  24.  
  25. #define pcalloc(request,pseg,psize) mmalloc(request,pseg,psize)
  26. #define pcfree(seg)            mmfree(seg)
  27. #define pcsetblk(seg,size,padsize)  mmsetblk(seg,size,padsize)
  28. #define pcshrink(psize)         mmshrink(psize)
  29. #define pcretvec(intype,pvector)    isretvec(intype,pvector)
  30. #define pcsetvec(intype,pvector)    issetvec(intype,pvector)
  31. #define pcinvint(intype,preg)        isinvint(intype,preg)
  32. #define pcinton()            ((void) utinton())
  33. #define pcintoff()            ((void) utintoff())
  34. #define pcisrstk(stksize)        isisrstk(stksize)
  35. #define pcsetisr(intype,pfunc,stksize,pvec,ppblk)        \
  36.     issetisr(intype,pfunc,stksize,pvec,ppblk)
  37. #define isrstk_base            (b_isrstk.r)
  38. #define isrss                (b_isrstk.s)
  39.  
  40.  
  41. #define DEF_BPROGCTL  1           /* Prevent second reading of    */
  42.                       /* these definitions.          */
  43.  
  44. #endif                      /* Ends "#ifndef DEF_BPROGCTL"  */
  45.