home *** CD-ROM | disk | FTP | other *** search
/ On Hand / On_Hand_From_Softbank_1994_Release_2_Disc_2_1994.iso / 00202 / s / disk1 / vbterm.gl_ / vbterm.bin
Text File  |  1993-04-28  |  920b  |  32 lines

  1. DefInt A-Z
  2.  
  3. '--- MSComm event constants
  4. Global Const MSCOMM_EV_SEND = 1
  5. Global Const MSCOMM_EV_RECEIVE = 2
  6. Global Const MSCOMM_EV_CTS = 3
  7. Global Const MSCOMM_EV_DSR = 4
  8. Global Const MSCOMM_EV_CD = 5
  9. Global Const MSCOMM_EV_RING = 6
  10. Global Const MSCOMM_EV_EOF = 7
  11.  
  12. '--- MSComm error code constants
  13. Global Const MSCOMM_ER_BREAK = 1001
  14. Global Const MSCOMM_ER_CTSTO = 1002
  15. Global Const MSCOMM_ER_DSRTO = 1003
  16. Global Const MSCOMM_ER_FRAME = 1004
  17. Global Const MSCOMM_ER_OVERRUN = 1006
  18. Global Const MSCOMM_ER_CDTO = 1007
  19. Global Const MSCOMM_ER_RXOVER = 1008
  20. Global Const MSCOMM_ER_RXPARITY = 1009
  21. Global Const MSCOMM_ER_TXFULL = 1010
  22.  
  23. '--- Common Dialog constants
  24. Global Const CDERR_CANCEL = 32755
  25. Global Const CF_SCREENFONTS = &H1&
  26.  
  27. '--- Global variables
  28. Global Echo                 'Echo On/Off flag
  29. Global CancelSend           'Flag to stop sending
  30.                             '  a text file.
  31.  
  32.