fix compilation problem when wxUSE_FSVOLUME==0 after last commit: declare wxIsDriveAvailable() before using it

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44350 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-02-03 12:01:42 +00:00
parent 006b7af2b2
commit 207ddcc988

View File

@ -83,7 +83,6 @@
#include <stdlib.h>
#include <ctype.h>
#endif
extern bool wxIsDriveAvailable(const wxString& dirName);
#endif // __OS2__
#if defined(__WXMAC__)
@ -99,6 +98,8 @@
#undef GetFirstChild
#endif
bool wxIsDriveAvailable(const wxString& dirName);
// ----------------------------------------------------------------------------
// wxGetAvailableDrives, for WINDOWS, DOS, OS2, MAC, UNIX (returns "/")
// ----------------------------------------------------------------------------