Keep wxPalmOS buildable - missing functions.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40789 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-08-24 14:27:41 +00:00
parent 85a0a12a9c
commit cdbce971ec
2 changed files with 9 additions and 1 deletions

View File

@@ -2040,7 +2040,10 @@ wxULongLong wxFileName::GetSize(const wxString &filename)
if (!wxFileExists(filename))
return wxInvalidSize;
#ifdef __WIN32__
#if defined(__WXPALMOS__)
// TODO
return wxInvalidSize;
#elif defined(__WIN32__)
wxFileHandle f(filename, wxFileHandle::Read);
if (!f.IsOk())
return wxInvalidSize;