PutIFileXtd8 Put an IFIL structure into a data file resource record. Extended 8-byte version. Short Name PUTIFILX8() Type Extended 8-byte ISAM Function Declaration COUNT PutIFileXtd8(pIFIL ifilptr, pTEXT dataextn, pTEXT indxextn, pTEXT fileword, pXCREblk pxcreblk) Description PutIFileXtd8() extends PutIFileXtd() in that it can be used on an open file. It accepts a pointer to an extended file creation block, pxcreblk, however, does not currently use that information and NULL should be passed in. Return
The following three points will help users avoid any error when using this function:
See “c-tree Plus Error Codes” in the c-tree Plus Programmer’s Reference Guide for a complete listing of valid c-tree Plus error values. Example IFIL vc_dat = {
. . . . }; /* IFIL structure to be placed in resource record */
pTEXT fileword;
if (ret = PutIFileXtd8(&vc_dat, NULL, NULL, fileword, NULL)) printf("\nError during PUTIFILX8, error = %d",ret);
else printf("\nSuccessful PUTIFILX8!");
See also PutIFile(), PutIFileXtd() |
|||||||||