home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SOURCE / FUNCTION / NTXTOOLS.C < prev    next >
C/C++ Source or Header  |  1994-06-05  |  426b  |  18 lines

  1. #include <ClipApi.h>
  2.  
  3. //----------------------------------------------------------------------------//
  4.  
  5. CLIPPER cNtxKey()      //  cNtxFile --> cKeyExpression
  6. {
  7.    WORD  wFile = _topen( _parc( 1 ), 0 );
  8.    BYTE  bKey[ 256 ];
  9.  
  10.    _tlseek( wFile, 22, 0 );
  11.    _tread( wFile, bKey, 256 );
  12.    _tclose( wFile );
  13.  
  14.    _retc( bKey );
  15. }
  16.  
  17. //----------------------------------------------------------------------------//
  18.