revert of mass delete of the posix subsystem. perhaps there is hope for it yet.
[reactos.git] / posix / include / psx / spawn.h
1 /* $Id: spawn.h,v 1.3 2002/10/29 04:45:15 rex Exp $
2 */
3 /*
4 * psx/spawn.h
5 *
6 * spawn POSIX+ processes
7 *
8 * This file is part of the ReactOS Operating System.
9 *
10 * Contributors:
11 * Created by KJK::Hyperion <noog@libero.it>
12 *
13 * THIS SOFTWARE IS NOT COPYRIGHTED
14 *
15 * This source code is offered for use in the public domain. You may
16 * use, modify or distribute it freely.
17 *
18 * This code is distributed in the hope that it will be useful but
19 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
20 * DISCLAMED. This includes but is not limited to warranties of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 *
23 */
24
25 #ifndef __PSX_SPAWN_H_INCLUDED__
26 #define __PSX_SPAWN_H_INCLUDED__
27
28 /* INCLUDES */
29 #include <ddk/ntddk.h>
30 #include <psx/pdata.h>
31
32 /* OBJECTS */
33
34 /* TYPES */
35
36 /* CONSTANTS */
37
38 /* PROTOTYPES */
39 NTSTATUS STDCALL __PdxSpawnPosixProcess
40 (
41 OUT PHANDLE ProcessHandle,
42 OUT PHANDLE ThreadHandle,
43 IN POBJECT_ATTRIBUTES FileObjectAttributes,
44 IN POBJECT_ATTRIBUTES ProcessObjectAttributes,
45 IN HANDLE InheritFromProcessHandle,
46 IN __PPDX_PDATA ProcessData
47 );
48
49 /* MACROS */
50
51 #endif /* __PSX_SPAWN_H_INCLUDED__ */
52
53 /* EOF */
54