home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / INCLUDE.ZIP / _PROCESS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  1.5 KB  |  36 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - _process.h
  3.  *
  4.  *      definitions of internal routines for exec* and spawn*
  5.  *
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*[]------------------------------------------------------------[]*/
  9. /*|                                                              |*/
  10. /*|     Turbo C Run Time Library - Version 3.0                   |*/
  11. /*|                                                              |*/
  12. /*|                                                              |*/
  13. /*|     Copyright (c) 1987, 1990 by Borland International        |*/
  14. /*|     All Rights Reserved.                                     |*/
  15. /*|                                                              |*/
  16. /*[]------------------------------------------------------------[]*/
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. extern  void    cdecl (*_exitbuf)(void);
  22. extern  void    cdecl (*_exitfopen)(void);
  23. extern  void    cdecl (*_exitopen)(void);
  24.  
  25.  
  26. char    *pascal near __DOScmd        (char **__argV);
  27. char    *pascal near __DOSenv        (char **__envV, char *__pathP, void **__envSave);
  28.  
  29. int      cdecl near _exec       (char *__path, char *__cmd, char *__env);
  30. int      cdecl near _spawn      (char *__path, char *__cmd, char *__env);
  31. int      cdecl near _LoadProg   (int cdecl near (* __Func)(), char *__path,
  32.                                  char *__argp[], char *__envV[], int __usepath);
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36.