fixed GetFreeMemory decl. to match wxWidgets

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Surovell
2005-11-26 23:27:21 +00:00
parent 8aeeb05c0e
commit e88df737fb

View File

@@ -78,10 +78,10 @@ wxString wxGetOsDescription();
// int wxParseCommonDialogsFilter(const wxString& wildCard, wxArrayString& descriptions, wxArrayString& filters);
#if defined(__WXMSW__) || defined(__WXMAC__)
long wxGetFreeMemory();
wxMemorySize wxGetFreeMemory();
#else
%inline %{
long wxGetFreeMemory()
wxMemorySize wxGetFreeMemory()
{ wxPyRaiseNotImplemented(); return 0; }
%}
#endif