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

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