Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / packages / palmunits / src / consolemgr.pp
Size: Mime:
{$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.