projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
added wxListBox::HitTest() from Ryan (patch 1446207)
[wxWidgets.git]
/
include
/
wx
/
sckstrm.h
diff --git
a/include/wx/sckstrm.h
b/include/wx/sckstrm.h
index a987d8c15e026b87a5556b22c384974b2d2898f7..30d01307579eff00b8fde56afb4fb00dfd4f88a4 100644
(file)
--- a/
include/wx/sckstrm.h
+++ b/
include/wx/sckstrm.h
@@
-11,10
+11,6
@@
#ifndef __SCK_STREAM_H__
#define __SCK_STREAM_H__
#ifndef __SCK_STREAM_H__
#define __SCK_STREAM_H__
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface
-#endif
-
#include "wx/stream.h"
#if wxUSE_SOCKETS && wxUSE_STREAMS
#include "wx/stream.h"
#if wxUSE_SOCKETS && wxUSE_STREAMS
@@
-27,9
+23,9
@@
class WXDLLIMPEXP_NET wxSocketOutputStream : public wxOutputStream
wxSocketOutputStream(wxSocketBase& s);
~wxSocketOutputStream();
wxSocketOutputStream(wxSocketBase& s);
~wxSocketOutputStream();
-
off_t SeekO( off_
t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
+
wxFileOffset SeekO( wxFileOffse
t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
{ return -1; }
{ return -1; }
-
off_
t TellO() const
+
wxFileOffse
t TellO() const
{ return -1; }
protected:
{ return -1; }
protected:
@@
-46,9
+42,9
@@
class WXDLLIMPEXP_NET wxSocketInputStream : public wxInputStream
wxSocketInputStream(wxSocketBase& s);
~wxSocketInputStream();
wxSocketInputStream(wxSocketBase& s);
~wxSocketInputStream();
-
off_t SeekI( off_
t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
+
wxFileOffset SeekI( wxFileOffse
t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
{ return -1; }
{ return -1; }
-
off_
t TellI() const
+
wxFileOffse
t TellI() const
{ return -1; }
protected:
{ return -1; }
protected: