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

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: setcurrentdirname.c,v 1.2 1997/01/27 00:36:31 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_LH1(BOOL, SetCurrentDirName,
  16.  
  17. /*  SYNOPSIS */
  18.     AROS_LHA(STRPTR, name, D1),
  19.  
  20. /*  LOCATION */
  21.     struct DosLibrary *, DOSBase, 93, Dos)
  22.  
  23. /*  FUNCTION
  24.  
  25.     INPUTS
  26.  
  27.     RESULT
  28.  
  29.     NOTES
  30.  
  31.     EXAMPLE
  32.  
  33.     BUGS
  34.  
  35.     SEE ALSO
  36.  
  37.     INTERNALS
  38.  
  39.     HISTORY
  40.     27-11-96    digulla automatically created from
  41.                 dos_lib.fd and clib/dos_protos.h
  42.  
  43. *****************************************************************************/
  44. {
  45.     AROS_LIBFUNC_INIT
  46.     AROS_LIBBASE_EXT_DECL(struct DosLibrary *,DOSBase)
  47.     extern void aros_print_not_implemented (char *);
  48.  
  49.     aros_print_not_implemented ("SetCurrentDirName");
  50.  
  51.     return DOSFALSE;
  52.     AROS_LIBFUNC_EXIT
  53. } /* SetCurrentDirName */
  54.