home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Palm / libc / include / io.h < prev    next >
C/C++ Source or Header  |  2001-01-08  |  2KB  |  36 lines

  1. /**********************************************************************/
  2. /*                                                                    */
  3. /* io.h: input/output subsystem definitions                           */
  4. /*                                                                    */
  5. /* Jeffery D. Collins                                                 */
  6. /* (c) Endeavors Technology, Inc.                                     */
  7. /*                                                                    */
  8. /* Modification history                                               */
  9. /*                                                                    */
  10. /* When?      What?                                              Who? */
  11. /* -------------------------------------------------------------------*/
  12. /*                                                                    */
  13. /**********************************************************************/
  14.  
  15. #ifndef IO_H
  16. #define IO_H
  17.  
  18. /**********************************************************************/
  19. /* Includes                                                           */
  20. /**********************************************************************/
  21. #include <PalmOS.h>
  22. #include "libc_segments.h"
  23.  
  24. /**********************************************************************/
  25. /* Prototypes                                                         */
  26. /**********************************************************************/
  27.  
  28. /* cannot put these into segments - they must be exposed to callers
  29.    of the library */
  30. Boolean ioHandleEvent (EventPtr event);
  31. void ioPutS (Char* s);
  32. Err ioInit(UInt16 formID, UInt16 fieldID, UInt16 scrollerID, UInt16 maxChars);
  33. void ioClear(void);
  34.  
  35. #endif
  36.