projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
compile fixes for EMX
[wxWidgets.git]
/
src
/
common
/
sckfile.cpp
diff --git
a/src/common/sckfile.cpp
b/src/common/sckfile.cpp
index 41686d09d8d808c7d93798f53c92cc2c389a6153..7cfb56086cb97b7067fa6bdfa9d0053cfaa39492 100644
(file)
--- a/
src/common/sckfile.cpp
+++ b/
src/common/sckfile.cpp
@@
-16,20
+16,20
@@
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#include "wx/wxprec.h"
#ifdef __BORLANDC__
-#pragma hdrstop
+
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#endif
#ifndef WX_PRECOMP
+ #include "wx/defs.h"
#endif
#include <stdio.h>
#endif
#include <stdio.h>
-#include <stdlib.h>
-#include <wx/fstream.h>
-#include "wx/protocol/file.h"
+#include <wx/wfstream.h>
+#include <wx/protocol/file.h>
#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxFileProto, wxProtocol)
#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxFileProto, wxProtocol)
-IMPLEMENT_PROTOCOL(wxFileProto,
"file"
, NULL, FALSE)
+IMPLEMENT_PROTOCOL(wxFileProto,
_T("file")
, NULL, FALSE)
#endif
wxFileProto::wxFileProto()
#endif
wxFileProto::wxFileProto()
@@
-45,3
+45,4
@@
wxInputStream *wxFileProto::GetInputStream(const wxString& path)
{
return new wxFileInputStream(path);
}
{
return new wxFileInputStream(path);
}
+