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

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