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

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: findsegment.c,v 1.2 1997/01/27 00:36:20 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_LH3(struct Segment *, FindSegment,
  16.  
  17. /*  SYNOPSIS */
  18.     AROS_LHA(STRPTR          , name, D1),
  19.     AROS_LHA(struct Segment *, seg, D2),
  20.     AROS_LHA(LONG            , system, D3),
  21.  
  22. /*  LOCATION */
  23.     struct DosLibrary *, DOSBase, 130, 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 ("FindSegment");
  52.  
  53.     return NULL;
  54.     AROS_LIBFUNC_EXIT
  55. } /* FindSegment */
  56.