/****************************************************************************** * * Copyright (c) 1994-1999 Palm Computing, Inc. or its subsidiaries. * All rights reserved. * * File: ConsoleMgr.h * * 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 * *****************************************************************************/ #ifndef __CONSOLEMGR_H__ #define __CONSOLEMGR_H__ // Include elementary types #include // Basic types #include // Trap Numbers. /******************************************************************** * Console Manager Routines ********************************************************************/ #ifdef __cplusplus extern "C" { #endif Err ConPutS(Char *message) SYS_TRAP(sysTrapConPutS); Err ConGetS(Char *message, Int32 timeout) SYS_TRAP(sysTrapConGetS); #ifdef __cplusplus } #endif #endif // __CONSOLEMGR_H__