home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / telecom / uucp_442 / src / include / protos.h < prev    next >
C/C++ Source or Header  |  1990-10-08  |  551b  |  34 lines

  1.  
  2. /*
  3.  *  AMIGA prototypes used by UUCP programs.  This is where compiler
  4.  *  dependancies go.
  5.  */
  6.  
  7. #ifndef _PROTOS_H
  8. #define _PROTOS_H
  9.  
  10. #ifdef _DCC
  11.  
  12. extern void *AllocMem();
  13. extern void *GetMsg();
  14. extern void *CreatePort();
  15. extern void *OpenWindow();
  16. extern void *OpenLibrary();
  17.  
  18. extern void *RemHead();
  19. extern void *RemTail();
  20.  
  21. extern void *FindPort();
  22. extern void *SetFunction();
  23.  
  24. #else
  25. #ifdef MCH_AMIGA
  26. #define __saveds
  27. #include <functions.h>           /* Manx */
  28. #else
  29. #include <proto/all.h>           /* Lattice */
  30. #endif
  31. #endif
  32.  
  33. #endif    /*  _PROTO_H */
  34.