home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 August / Chip_1999-08_cd.bin / sharewar / wscmclib / MODMGLOB.BAS < prev    next >
BASIC Source File  |  1997-10-30  |  512b  |  22 lines

  1. ' Global Variables
  2. Option Explicit
  3.  
  4. Global ThePort As Integer
  5. Global TheBaudCode As Integer
  6. Global BaudRateTable(0 To 8) As String
  7. Global TheDataBits As Integer
  8. Global TheParity As Integer
  9. Global TheStopBits As Integer
  10. Global ParityText(0 To 4) As String
  11. Global OnLineFlag As Integer
  12. Global FatalFlag As Integer
  13. Global DataFlag As Integer
  14.  
  15. 'Global constants
  16. Global Const COM_PORTS = 1
  17. Global Const BAUD_RATE = 2
  18. Global Const DATA_BITS = 3
  19. Global Const STOP_BITS = 4
  20. Global Const PARITY = 5
  21.  
  22.