home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 2.ddi / RTLINSRC.ZIP / _PROCESS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.5 KB  |  35 lines

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