Home |
Function RTFFindNextEx |
Function RTFFindNextExRTFFindNextEx finds more files with the same search criteria as a preceding call to RTFFindFirstEx: int RTFFindNextEx(RTFHANDLE File, RTFDOSDirEntry * FileInfo, char * FileName, UINT MaxLength); ParametersFileHandle returned by a previous successful call to RTFFindFirstEx. FileInfoPointer to a RTFDOSDirEntry structure (may be NULL). FileNamePointer to a string buffer to receive a file name without path. MaxLengthSize in bytes of the buffer pointed to by FileName. Files with a file name length larger than MaxLength-1 will not be found. 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. If the function succeeds, *FileInfo and *FileName will be filled with the directory entry and name of the file found. Please note that on exFAT and ISO 9660 volumes, no file name is stored in *FileInfo.
|