home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / qbbsetc / ava40.lzh / AVADAT.DOC < prev    next >
Text File  |  1990-03-14  |  852b  |  32 lines

  1.  
  2.  
  3. Structure information for AVA.Dat
  4. ---------------------------------
  5. 03-14-90
  6.  
  7.  
  8. AVA.Dat is a random access file and is used by AVA to check for duplicate 
  9. numbers.  Caller information is stored in AVA.Dat after a successful 
  10. verification.
  11.  
  12. TYPE AvaDatRecord
  13.         DFlag AS STRING * 1
  14.         DName AS STRING * 35
  15.         DPhone AS STRING * 14
  16.         DDate AS STRING * 8
  17. END TYPE
  18.  
  19. DFlag will either be a 1 or 0.  DFlag = "1" means the record is active and
  20. DFlag = "0" means the record is dead.  Earlier versions of AVA would maintain 
  21. AVA.Dat thus the "1" or "0".  Presently REMOVE, an external utility, maintains 
  22. the data file.
  23.  
  24. DName is the First and Last name of the verified caller
  25.  
  26. DPhone is the number AVA called to verifiy DName
  27.  
  28. DDate is the date the caller was verified.  It is in the format of MM-DD-YY.
  29.  
  30.  
  31.  
  32.