home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / rom / dos / lockrecords.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: lockrecords.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/record.h>
  14. #include <proto/dos.h>
  15.  
  16.     AROS_LH2(BOOL, LockRecords,
  17.  
  18. /*  SYNOPSIS */
  19.     AROS_LHA(struct RecordLock *, recArray, D1),
  20.     AROS_LHA(ULONG              , timeout, D2),
  21.  
  22. /*  LOCATION */
  23.     struct DosLibrary *, DOSBase, 46, 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 ("LockRecords");
  52.  
  53.     return DOSFALSE;
  54.     AROS_LIBFUNC_EXIT
  55. } /* LockRecords */
  56.