home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / comm / avmnfax-1.33.lha / avmNfax / rexx / showcid.avm < prev    next >
Text File  |  1994-06-24  |  306b  |  13 lines

  1. /* */
  2.  
  3. /* cidName and cidNumber are valid variables here! */
  4.  
  5. if show('p', 'AVMCIDLOGGER') then do
  6.   address 'AVMCIDLOGGER' 'add' 'CID info at' time()
  7.   if cidName ~= '' then
  8.     address 'AVMCIDLOGGER' 'addcidname' cidName
  9.   if cidNumber ~= '' then
  10.     address 'AVMCIDLOGGER' 'addcidnumber' cidNumber
  11. end
  12.  
  13.