Win32 utility to bootstrap the PSX subsystem (it is an optional subsystem, therefore...
[reactos.git] / posix / server / ob / terminal.c
1 /* $Id: terminal.c,v 1.3 2002/10/29 04:45:57 rex Exp $
2 *
3 * PROJECT : ReactOS / POSIX+ Environment Subsystem Server
4 * FILE : reactos/subsys/psx/server/ob/terminal.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 * WriteTerminal/4
32 */
33 NTSTATUS STDCALL
34 WriteTerminal (
35 IN PPSX_TERMINAL Terminal,
36 IN PVOID Buffer,
37 IN ULONG Size,
38 IN OUT PULONG WrittenSize
39 )
40 {
41 return STATUS_NOT_IMPLEMENTED;
42 }
43 /**********************************************************************
44 * ReadTerminal/4
45 */
46 NTSTATUS STDCALL
47 ReadTerminal (
48 IN PPSX_TERMINAL Terminal,
49 IN OUT PVOID Buffer,
50 IN ULONG Size,
51 IN OUT PULONG ReadSize
52 )
53 {
54 return STATUS_NOT_IMPLEMENTED;
55 }
56 /* EOF */