consolemgr.pp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {$MACRO ON}
  2. (******************************************************************************
  3. *
  4. * Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
  5. * All rights reserved.
  6. *
  7. * File: ConsoleMgr.h
  8. *
  9. * Release: Palm OS SDK 4.0 (63220)
  10. *
  11. * Description:
  12. * This module implements simple text in and text out to a console
  13. * application on the other end of the serial port. It talks through
  14. * the Serial Link Manager and sends and receives packets of type slkPktTypeConsole.
  15. *
  16. * History:
  17. * 10/25/94 RM - Created by Ron Marianetti
  18. *
  19. *****************************************************************************)
  20. unit consolemgr;
  21. interface
  22. uses palmos, coretraps;
  23. (********************************************************************
  24. * Console Manager Routines
  25. ********************************************************************)
  26. function ConPutS(const message: PChar): Err; syscall sysTrapConPutS;
  27. function ConGetS(message: PChar; timeout: Int32): Err; syscall sysTrapConGetS;
  28. implementation
  29. end.