home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 September / Chip_2000-09_cd1.bin / sharewar / Slunec / app / 16 / COMM.SWG / 0002_FON.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-03  |  2KB  |  75 lines

  1. --------D-FON-?-----------------------------
  2.  
  3. The Telix .FON files are the telephone books Telix uses to store numbers
  4. in. The format is for Telix 3.22
  5.  
  6. OFFSET              Count TYPE   Description
  7. 0000h                   1 dword  ID=2E2B291Ah
  8. 0004h                   1 word   Version info (=1)
  9. 0006h                   1 word   Number of entries in directory (count from 1)
  10. 0007h                   1 char   ?will be used for encryption?
  11.                                  Currently 0
  12. 0008h                  55 byte   reserved
  13. 0040h                   ? rec    Actual phonebook entry
  14.                        25 char   Name (0 terminated)
  15.                        17 char   Phone number (0 terminated)
  16.                         1 byte   Baud rate (see table 0006)
  17.                         1 byte   Parity type (see table 0007)
  18.                         1 byte   Data bits (7 or 8)
  19.                         1 byte   Stop bits (1 or 2)
  20.                        12 char   Script file name
  21.                         6 char   Date of last call in ASCII
  22.                         1 word   Number of total calls
  23.                         1 byte   Terminal type (see table 0008)
  24.                         1 byte   Protocol
  25.                         1 byte   Flags, bitmapped
  26.                                    0 - Local echo on / off
  27.                                    1 - add linefeeds on / off
  28.                                    2 - backspace is destructive on / off
  29.                                    3 - backspace sends DEL / sends BS
  30.                                    4 - strip high bits on / off
  31.                                  5-7 - reserved
  32.                         1 word   unknown
  33.                         1 byte   Dial prefix index
  34.                        14 char   Password
  35.  
  36. (Table 0006)
  37. Baud rate tables for Telix
  38.  
  39.   0 =    300 baud
  40.   1 =   1200 baud
  41.   2 =   2400 baud
  42.   3 =   4800 baud
  43.   4 =   9600 baud
  44.   5 =  19200 baud
  45.   6 =  38400 baud
  46.   7 =  57600 baud
  47.   8 = 115200 baud
  48.  
  49. (Table 0007)
  50. Parity types for Telix
  51.  
  52.    0 = None
  53.    1 = Even
  54.    2 = Odd
  55.    3 = Mark
  56.    4 = Space
  57.  
  58. (Table 0008)
  59. Terminal types for Telix
  60.  
  61.    0 = TTY
  62.    1 = ANSI-BBS
  63.    2 = VT102
  64.    3 = VT52
  65.    4 = AVATAR
  66.    5 = ANSI
  67.  
  68. EXTENSION:FON
  69. OCCURENCES:PC
  70. PROGRAMS:Telix v3.22
  71. REFERENCE:
  72. SEE ALSO:
  73. VALIDATION:
  74.  
  75.