Fixed the code to actually work.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24579 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -76,19 +76,19 @@ static inline FIND_DATA FindFirst(
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
ULONG ulFindCount = 1;
|
ULONG ulFindCount = 1;
|
||||||
FIND_DATA hDir;
|
FIND_DATA hDir = HDIR_CREATE;
|
||||||
FIND_ATTR rc;
|
FIND_ATTR rc;
|
||||||
|
|
||||||
rc = ::DosFindFirst( rsSpec.c_str()
|
rc = ::DosFindFirst( rsSpec.c_str()
|
||||||
,&hDir
|
,&hDir
|
||||||
,FILE_NORMAL
|
,0x37 // was: FILE_NORMAL
|
||||||
,pFinddata
|
,pFinddata
|
||||||
,sizeof(FILEFINDBUF3)
|
,sizeof(FILEFINDBUF3)
|
||||||
,&ulFindCount
|
,&ulFindCount
|
||||||
,FIL_STANDARD
|
,FIL_STANDARD
|
||||||
);
|
);
|
||||||
if (rc != 0)
|
if (rc != 0)
|
||||||
return 0;
|
return InitFindData();
|
||||||
return hDir;
|
return hDir;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -103,7 +103,7 @@ static inline bool FindNext(
|
|||||||
,pFinddata
|
,pFinddata
|
||||||
,sizeof(FILEFINDBUF3)
|
,sizeof(FILEFINDBUF3)
|
||||||
,&ulFindCount
|
,&ulFindCount
|
||||||
) != 0;
|
) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const wxChar* GetNameFromFindData(
|
static const wxChar* GetNameFromFindData(
|
||||||
|
Reference in New Issue
Block a user