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

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