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 >
Wrap
C/C++ Source or Header
|
1994-06-05
|
426b
|
18 lines
#include <ClipApi.h>
//----------------------------------------------------------------------------//
CLIPPER cNtxKey() // cNtxFile --> cKeyExpression
{
WORD wFile = _topen( _parc( 1 ), 0 );
BYTE bKey[ 256 ];
_tlseek( wFile, 22, 0 );
_tread( wFile, bKey, 256 );
_tclose( wFile );
_retc( bKey );
}
//----------------------------------------------------------------------------//