64 strcpy((
char*)strSearchFor, (
char*)
m_strPath);
65 strcat((
char*)strSearchFor, (
char*)strPattern);
66 m_hSearch = _findfirst( (
char*)strSearchFor, &m_finddataFoundFile);
89 strcpy((
char*)strResult, (
char*)
m_strPath);
90 strcat((
char*)strResult, (
char*)m_finddataFoundFile.name);
104 struct dirent * pEntry = NULL;
105 while ((pEntry = readdir(
m_hSearch)) != NULL)
107 if (fnmatch((
char*)
m_strPattern, pEntry->d_name, FNM_PATHNAME) == 0)
110 strcpy((
char*)strResult, (
char*)
m_strPath);
111 strcat((
char*)strResult, (
char*)pEntry->d_name);
CAFileSystemDirectory(UINT8 *strPath)
SINT32 getNextSearchResult(UINT8 *strResult, UINT32 sizeResult)
SINT32 find(UINT8 *strPattern)