Home |
Function RTFFindNext |
Function RTFFindNextThis function is obsolete. Use RTFFindNextEx instead. RTFFindNext finds more files with the same search criteria as a preceding call to RTFFindFirst: int RTFFindNext(RTFHANDLE File, RTFDOSDirEntry * FileInfo, char * FileName); ParametersFileMust be a valid handle returned by a previous call to RTFFindFirst. FileInfoMust point to a RTFDOSDirEntry structure. FileNameAn optional parameter (may be NULL), which points to a string buffer of at least 13 characters to receive a file name. return valueIf the function succeeds, the return value is RTF_NO_ERROR. If the function fails or no more files are found, the return value is a negative error code. Please note that on exFAT and ISO 9660 volumes, no file name is stored in *FileInfo. If the function succeeds, this structure will be filled with the directory entry of the file found.
|