home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / aplusplus-1.01-src.lha / GNU / src / amiga / APlusPlus-1.01 / amiproc / amiproc.h < prev    next >
C/C++ Source or Header  |  1994-07-07  |  417b  |  22 lines

  1. #ifndef D_DATASEG_H
  2. #define D_DATASEG_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. #include <dos/dos.h>
  9.  
  10. // The following functions provide a convenient way to spawn
  11. // a new subprocess with full autoinitialization, access to
  12. // all the normal library functions, etc.
  13.  
  14. struct AmiProcMsg *AmiProc_Start(int (*FuncPtr)(void *), void *UserData);
  15. int AmiProc_Wait(struct AmiProcMsg *);
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20.  
  21. #endif
  22.