home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / COMTALK.ZIP / README < prev    next >
Text File  |  1989-02-08  |  1KB  |  44 lines

  1. Comments about COMTALK
  2.  
  3. Comtalk is a PM communications program.  It is broken up into five modules:
  4.  
  5. AVIO        This module controls AVIO interactions.  In this routine,
  6.         the window size and scrollbars are controlled.
  7.  
  8. CIRCLEQ        This module controls the circular queue buffer with which
  9.         the AVIO module updates the screen.
  10.  
  11. COMPORT        This module controls reading and writing characters from
  12.         the communications port (makes DosDevIOCtl calls, etc...)
  13.  
  14. COMTALK        This module contains the main window procedure, and processes
  15.         user input
  16.  
  17. THREADS        This module contains 3 secondary threads, which write characters
  18.         to the COM port, read from the COM port, and one which takes
  19.         characters read from the COM port and pushes them into the
  20.         circular line buffer queue.
  21.  
  22. Possible improvements to this program include:  File transfer capabilities,
  23. terminal emulation, small fonts (AVIO).
  24.  
  25.  
  26. Directory Contents:
  27. AVIO.C        AVIO module source routines
  28. AVIO.H        AVIO module prototypes
  29. CIRCLEQ.C    Circular queue module source
  30. CIRCLEQ.H    Circular queue prototypes
  31. COMPORT.C     COM port interface
  32. COMPORT.H    COM port interface prototypes
  33. COMTALK        Makefile
  34. COMTALK.C    Core routines
  35. COMTALK.DEF    Definition file
  36. COMTALK.EXE    Executable
  37. COMTALK.H    Resource Identifiers
  38. COMTALK.ICO    Icon
  39. COMTALK.RC    Resources
  40. COMTALK.SYM    Symbol file
  41. GLOBAL.H    Definitions common to all modules
  42. THREADS.C    Secondary threads module
  43. THREADS.H    Secondary thread module prototypes
  44.