|
OS/2 Libraries FATS_O32.DLL / FATSXO32.DLL
The diskette "FATS for OS/2 (32bit)" contains the dynamic link libraries FATS_O32.DLL (basis version) resp. FATSXO32.DLL (extended version), that must be copied into the system directory of OS/2 :
COPY FATS?O32.DLL \OS2\DLL
The libraries are exporting the following functions:
void * __syscall FATSLibInit(unsigned int datasize, unsigned int sign);void * __syscall FATSLibExit(void *lpFatsdata);
unsigned long __syscall FATSLibCall(char *szCmnd, int *nErrorcode,char *szFatsKey, void *lpFatsdata);
On the FATS distribution diskette in the directory OS2_32I you find the import libraries FATS_O32.LIB (basis version) resp. FATSXO32.LIB (extended version) that are supported for linking with your programs.The libraries are particulary developed for Watcom C (OMF object format).
Before you can use the FATS commands in your Watcom-C program, you must assign a data area to FATS:
lpFatsdata = FATSLibInit(0, 2);
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 C this value must equal to 2. 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 OS/2 (32bit) contains some test programs in the directory OS2_32I\C\WATCOM that illustrate how you can use the FATS commands in your programs:
tst1_eng.c Test program for Watcom-C for OS/2 rebuild.c Re-Indexing a Data File (commands 'BK', 'DL')
The extended version of FATS contains the following additional test programs:
tst2_eng.c Introduction to the Matchcode Functions mcsort.c Use of the key-flag with command 'MC' reindex.c Fast Re-Indexing with the command 'XB'
© 2008 GCS Software, Udo Gertz