home *** CD-ROM | disk | FTP | other *** search
- /*
- * DESQview/X Socket Library. Copyright (c) 1991 Quarterdeck Office Systems.
- */
-
- #ifndef __QDECK_H__
- #define __QDECK_H__
-
- #include <stdio.h> /* For FILE *pif_open() */
-
- #ifndef NO_PROTO
-
- #ifdef __cplusplus /* for C++ V2.0 */
- extern "C" { /* do not leave open across includes */
- #endif /* __cplusplus */
-
- int system(char *);
- unsigned long pif_exec(char *); /* returns process handle */
- int pif_start(char *);
- unsigned long NewProc(char *,int);
- FILE *pif_open(char *,char **);
- void wait1(unsigned);
- void dvpath(char *); /* Pass buffer, will return "c:\dvx" */
- int CanonicalPath(char *, char *);
-
- #ifdef __cplusplus /* for C++ V2.0 */
- }
- #endif /* __cplusplus */
-
- #else /* NO_PROTO */
-
- int system();
- unsigned long pif_exec();
- int pif_start();
- unsigned long NewProc();
- FILE *pif_open();
- void wait1();
- void dvpath();
- int CanonicalPath();
-
- #endif /* NO_PROTO */
-
- #endif /* __QDECK_H__ */
-
-
-