|
Windows Libraries FATS_WIN.DLL / FATSXWIN.DLL
The diskette "FATS for Windows 3.x" contains the dynamic link libraries FATS_WIN.DLL (basis version) resp. FATSXWIN.DLL (extended version), that must be copied into the system directory of Windows:
COPY FATS?WIN.DLL \WINDOWS\SYSTEM
The libraries are exporting the following functions:
function FATSLibInit(nSize: integer; nSign: integer): pointer;far; external 'fats_win';function FATSLibExit(lpFatsdata: pointer ): pointer;far; external 'fats_win';
function FATSLibCall(var szCmnd: fatscmndstr; var nErrorcode: integer;var szFatsKey: fatskeystr; lpFatsdata: pointer): longint;far; external 'fats_win';
Before you can use the FATS commands in your Delphi program, you must assign a data area to FATS:
begin
{ -------> init fats datasegment }
lpFatsdata:=FATSLibInit(0, 1);
The first parameter determines the size of the FATS data area. If you indicate a zero here, then the minimum needed storage space is reserved (approx. 18-20 KB). The second parameter intends the assigned programming language, for 16-Bit Delphi this value must equal to 1. The address of the data area is returned in the variable lpFatsdata.
Before terminating the application program you should release the storage area allocated by FATSLibInit . You can do this by calling the function FATSLibExit:
lpFatsdata:=FATSLibExit(lpFatsdata);
Although the storage area would be released automatically by the operating system, this instruction is useful, since it closes all FATS files that are still opened.
Calling FATS
FATS commands are executed with the function FATSLibCall:
dwRecno :=FATSLibCall(szCmnd, nErrorcode, szFatsKey, lpFatsdata);
Parameter Usage:
szCmnd Command string (input) nErrorcode Errorcode (output) szFatsKey Key value (output) lpFatsdata Address of FATS data area (input) Return Value: Record Number
Testprograms
The FATS distribution disk for Windows 3.x contains some test programs in the directory WIN_16I\PASCAL\DELPHI that illustrate how you can use the FATS commands in your programs:
tst1_eng.dpr Test program for Delphi for Win 3.x rebuild.dpr Re-Indexing a Data File (commands 'BK', 'DL')
The extended version of FATS contains the following additional test programs:
tst2_eng.dpr Introduction to the Matchcode Functions mcsort.dpr Use of the key-flag with command 'MC' reindex.dpr Fast Re-Indexing with the command 'XB'
© 2008 GCS Software, Udo Gertz