mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-13 09:01:40 +01:00
39 lines
1.0 KiB
ObjectPascal
39 lines
1.0 KiB
ObjectPascal
{$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.
|