2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
9 #include <proto/exec.h>
10 #include <proto/dos.h>
11 #include <proto/rexxsyslib.h>
12 #include <exec/types.h>
13 #include <exec/memory.h>
14 #include <rexx/storage.h>
15 #include <rexx/errors.h>
20 #include "rexxsupport_intern.h"
21 #include "rxfunctions.h"
23 LONG
rxsupp_makedir(struct Library
*RexxSupportBase
, struct RexxMsg
*msg
, UBYTE
**argstring
)
27 lock
= CreateDir(ARG1(msg
));
28 if (lock
== (BPTR
)NULL
)
29 *argstring
= CreateArgstring("0", 1);
33 *argstring
= CreateArgstring("1", 1);