home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR2 / CNAMES10.ZIP / CNAMES.DOC next >
Text File  |  1993-11-25  |  2KB  |  65 lines

  1.    CNAMES.TPU   - Beta Copy - Rev 11/25/93 Version 1.0
  2.  
  3.    CNAMES  UNIT by Steve Horrighs, Copyright (C)1993 All rights reserved
  4.         If you use this unit in your own programming, I ask
  5.         only that you give me credit in your documentation.
  6.         I do ask however, if you modify the Code please let
  7.         me know so i can improve my methods as well :)
  8.  
  9.         And as always, Steve Horrighs and/or Fantasy Land
  10.         Computer Services will be held harmless of any
  11.         damages that come from use of this Code.
  12.         ALL Responsibility is the Users.
  13.  
  14. you can reach me at any of the following:
  15.  
  16. Fantasy Land BBS (217)566-3775 (i am the sysop)
  17. steve.horrighs@fantasy.com  Internet
  18. 1:2430/2                    FidoNet
  19.  
  20.   Some portions where provided by Clark Development Company.
  21.  
  22. This ain't Great documentation but....
  23.  
  24.  
  25. Procedure GetCnamesRec
  26.       3 Parameters passed:
  27.          1 = Path to CNAMES.@@@ File, include the full name
  28.          2 = Record number you are attempting to retrieve
  29.          3 = Variable of type PCBCnamesRec
  30.          example:
  31.             GetCnamesRec('C:\PCB\GEN\CNAMES.@@@',1,REC);
  32.  
  33.          this will put the First Conference (Record #1) into
  34.          the Variable REC.  All the Path/Names are in Arrays of
  35.          Chars.  this is the Direct Read from the @@@ file.
  36.  
  37.  
  38. Procedure GetCnamesRecStr
  39.       3 Parameters passed:
  40.          1 = Path to CNAMES.@@@ File, include the full name
  41.          2 = Record number you are attempting to retrieve
  42.          3 = Variable of type PCBCnamesRecStr
  43.          example:
  44.             GetCnamesRec('C:\PCB\GEN\CNAMES.@@@',1,REC);
  45.  
  46.          this will put the First Conference (Record #1) into
  47.          the Variable REC.  All the Path/Names are in Arrays of
  48.          Chars.  this is the Direct Read from the @@@ file converted
  49.          over to normal Pascal Strings, alot more friendly.
  50.  
  51. Procedure ClearCnamesRecStr
  52.       1 Parammeter passed:
  53.              Variable of type PCBCnamesRecStr
  54.  
  55.          this clears out the variable.  sets Strings to '' and
  56.          Numbers to 0.  this is for the 'String' Cnames Rec.
  57.  
  58. Procedure ClearCnamesRec
  59.       1 Parammeter passed:
  60.              Variable of type PCBCnamesRec
  61.  
  62.          this clears out the variable.  sets arrays of chars to #0
  63.          and numbers to 0.
  64.  
  65.