home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / INCLUDE / DBF.CH < prev    next >
Text File  |  1994-06-07  |  599b  |  23 lines

  1. // Warning: Under development. Not available yet!
  2.  
  3. #ifndef _DBF_CH
  4. #define _DBF_CH
  5.  
  6. #xcommand DBF [<oDbf>] ;
  7.              [ <file: FILE, FILENAME, DISK> <cFileName> ] ;
  8.              [ ALIAS <cAlias> ] ;
  9.              [ <user: FROM USER> ] ;
  10.        => ;
  11.           [ <oDbf> := ] DbfBegin( <cFileName>, <cAlias>, <.user.> )
  12.  
  13. #xcommand FIELD <cName> ;
  14.              [ AS <type: STRING, NUMBER, DATE, LOGIC, MEMO> ] ;
  15.              [ LEN <nLen> ] ;
  16.              [ DEC <nDec> ] ;
  17.        => ;
  18.           FldDef( <(cName)>, <(type)>, <nLen>, <nDec> )
  19.  
  20. #xcommand ENDDBF => DbfEnd()
  21.  
  22. #endif
  23.