home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / rom / dos / dopkt.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-27  |  1.1 KB  |  60 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: dopkt.c,v 1.2 1997/01/27 00:36:17 ldp Exp $
  4.  
  5.     Desc:
  6.     Lang: english
  7. */
  8. #include "dos_intern.h"
  9.  
  10. /*****************************************************************************
  11.  
  12.     NAME */
  13. #include <proto/dos.h>
  14.  
  15.     AROS_LH7(LONG, DoPkt,
  16.  
  17. /*  SYNOPSIS */
  18.     AROS_LHA(struct MsgPort *, port, D1),
  19.     AROS_LHA(LONG            , action, D2),
  20.     AROS_LHA(LONG            , arg1, D3),
  21.     AROS_LHA(LONG            , arg2, D4),
  22.     AROS_LHA(LONG            , arg3, D5),
  23.     AROS_LHA(LONG            , arg4, D6),
  24.     AROS_LHA(LONG            , arg5, D7),
  25.  
  26. /*  LOCATION */
  27.     struct DosLibrary *, DOSBase, 40, Dos)
  28.  
  29. /*  FUNCTION
  30.  
  31.     INPUTS
  32.  
  33.     RESULT
  34.  
  35.     NOTES
  36.  
  37.     EXAMPLE
  38.  
  39.     BUGS
  40.  
  41.     SEE ALSO
  42.  
  43.     INTERNALS
  44.  
  45.     HISTORY
  46.     27-11-96    digulla automatically created from
  47.                 dos_lib.fd and clib/dos_protos.h
  48.  
  49. *****************************************************************************/
  50. {
  51.     AROS_LIBFUNC_INIT
  52.     AROS_LIBBASE_EXT_DECL(struct DosLibrary *,DOSBase)
  53.     extern void aros_print_not_implemented (char *);
  54.  
  55.     aros_print_not_implemented ("DoPkt");
  56.  
  57.     return FALSE;
  58.     AROS_LIBFUNC_EXIT
  59. } /* DoPkt */
  60.