X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8a4df1595bc8ce70286afe99f122f64916790ad4..2ec6905c69c73f908533697c770c690657f4371c:/src/common/sckfile.cpp diff --git a/src/common/sckfile.cpp b/src/common/sckfile.cpp index 7cfb56086c..e48f33693f 100644 --- a/src/common/sckfile.cpp +++ b/src/common/sckfile.cpp @@ -23,14 +23,14 @@ #include "wx/defs.h" #endif +#if wxUSE_STREAMS + #include -#include -#include +#include "wx/wfstream.h" +#include "wx/protocol/file.h" -#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxFileProto, wxProtocol) -IMPLEMENT_PROTOCOL(wxFileProto, _T("file"), NULL, FALSE) -#endif +IMPLEMENT_PROTOCOL(wxFileProto, wxT("file"), NULL, FALSE) wxFileProto::wxFileProto() : wxProtocol() @@ -46,3 +46,5 @@ wxInputStream *wxFileProto::GetInputStream(const wxString& path) return new wxFileInputStream(path); } +#endif +