home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6574.LZX / include / functions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-04  |  494 b   |  25 lines

  1. /* Copyright (c) 1993 SAS Institute, Inc, Cary, NC USA */
  2. /* All Rights Reserved. */
  3.  
  4. #ifndef __FUNCTIONS_H
  5. #define __FUNCTIONS_H
  6.  
  7. typedef void (*PVF)(void);
  8.  
  9. #ifndef PROTO_ALL_H
  10. #include <proto/all.h>
  11. #endif
  12.  
  13. #ifndef _SCRCNTL_H
  14. #include <scrcntl.h>
  15. #endif
  16.  
  17. long dos_packet(struct MsgPort *port, long type,
  18.         long arg1, long arg2, long arg3, long arg4,
  19.         long arg5, long arg6, long arg7);
  20.  
  21. char *scdir(const char *pat);
  22. char *mktemp(char *template_arg);
  23. int mkstemp(char *template_arg);
  24. #endif
  25.