1234567891011121314151617181920212223242526272829303132333435363738 |
- {$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.
|