home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BPROGCTL.H -- Header file for C TOOLS PLUS Program Control Functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1985, 1986
- *
- **/
-
- #ifndef DEF_BPROGCTL /* Prevent redefinition. */
-
- #include <compiler.h>
-
- int pcexec(char *,char *,int); /* Load and execute a program */
- int pcdoscmd(char *); /* Execute a DOS command */
- /* */
- char *pcenvchk(char *,int); /* Return environment parameter */
- /* */
- void pcexit(unsigned); /* Terminate and set error code */
- int pcwait(int *); /* Inspect child's error code */
- void pcresext(int); /* Exit but stay resident */
- int pcremove(unsigned); /* Remove resident program */
-
- /* Aliases for former names */
-
- #define pcalloc(request,pseg,psize) mmalloc(request,pseg,psize)
- #define pcfree(seg) mmfree(seg)
- #define pcsetblk(seg,size,padsize) mmsetblk(seg,size,padsize)
- #define pcshrink(psize) mmshrink(psize)
- #define pcretvec(intype,pvector) isretvec(intype,pvector)
- #define pcsetvec(intype,pvector) issetvec(intype,pvector)
- #define pcinvint(intype,preg) isinvint(intype,preg)
- #define pcinton() ((void) utinton())
- #define pcintoff() ((void) utintoff())
- #define pcisrstk(stksize) isisrstk(stksize)
- #define pcsetisr(intype,pfunc,stksize,pvec,ppblk) \
- issetisr(intype,pfunc,stksize,pvec,ppblk)
- #define isrstk_base (b_isrstk.r)
- #define isrss (b_isrstk.s)
-
-
- #define DEF_BPROGCTL 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BPROGCTL" */