summaryrefslogtreecommitdiff
path: root/packages/palmunits/src/consolemgr.pp
blob: c1ec32c3d8142ed1498e70d82a7bc168d089624f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{$MACRO ON}

(******************************************************************************
 *
 * Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
 * All rights reserved.
 *
 * File: ConsoleMgr.h
 *
 * Release: Palm OS SDK 4.0 (63220)
 *
 * Description:
 *    This module implements simple text in and text out to a console
 *  application on the other end of the serial port. It talks through
 *  the Serial Link Manager and sends and receives packets of type slkPktTypeConsole.
 *
 * History:
 *    10/25/94  RM - Created by Ron Marianetti
 *
 *****************************************************************************)

unit consolemgr;

interface

uses palmos, coretraps;

(********************************************************************
 * Console Manager Routines
 ********************************************************************)

function ConPutS(const message: PChar): Err; syscall sysTrapConPutS;

function ConGetS(message: PChar; timeout: Int32): Err; syscall sysTrapConGetS;

implementation

end.