Merge 12735:15568 from xmlbuildsystem branch
[reactos.git] / posix / server / ob / process.c
1 /* $Id: process.c,v 1.4 2003/12/21 20:11:46 ea Exp $
2 *
3 * PROJECT : ReactOS / POSIX+ Environment Subsystem Server
4 * FILE : reactos/subsys/psx/server/ob/session.c
5 * DESCRIPTION: terminal
6 * DATE : 2002-04-04
7 * AUTHOR : Emanuele Aliberti <eal@users.sf.net>
8 *
9 * --------------------------------------------------------------------
10 *
11 * This software is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of the
14 * License, or (at your option) any later version.
15 *
16 * This software is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this software; see the file COPYING. If not, write
23 * to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
24 * MA 02139, USA.
25 *
26 * --------------------------------------------------------------------
27 */
28 #include <psxss.h>
29
30 /**********************************************************************
31 * PsxInitializeProcesses/0
32 */
33 NTSTATUS STDCALL
34 PsxInitializeProcesses (VOID)
35 {
36 debug_print (L"PSXSS: ->%s", __FUNCTION__);
37 /* TODO */
38 debug_print (L"PSXSS: <-%s", __FUNCTION__);
39 return STATUS_SUCCESS;
40 }
41 /**********************************************************************
42 * PsxCreateProcess/3
43 */
44 NTSTATUS STDCALL
45 PsxCreateProcess (
46 PLPC_MAX_MESSAGE pRequest,
47 HANDLE hConnectedPort,
48 ULONG ulPortIdentifier
49 )
50 {
51 debug_print (L"PSXSS: ->%s", __FUNCTION__);
52 /* TODO */
53 debug_print (L"PSXSS: <-%s", __FUNCTION__);
54 return STATUS_SUCCESS;
55 }
56 /* EOF */