home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / uucp / amigauucpsrc / include / protos.h < prev    next >
C/C++ Source or Header  |  1994-06-29  |  585b  |  36 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. #ifndef CLIB_EXEC_PROTOS_H
  13. extern void *AllocMem();
  14. extern void *GetMsg();
  15. extern void *CreatePort();
  16. extern void *OpenWindow();
  17. extern void *OpenLibrary();
  18.  
  19. extern void *RemHead();
  20. extern void *RemTail();
  21.  
  22. extern void *FindPort();
  23. extern void *SetFunction();
  24. #endif
  25.  
  26. #else
  27. #ifdef MCH_AMIGA
  28. #define __saveds
  29. #include <functions.h>           /* Manx */
  30. #else
  31. #include <proto/all.h>           /* Lattice */
  32. #endif
  33. #endif
  34.  
  35. #endif    /*  _PROTO_H */
  36.