]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sckstrm.h
Don't define __STRICT_ANSI__, we should build both with and without it.
[wxWidgets.git] / include / wx / sckstrm.h
index c9c19f284b06c46466b9caf444d3a6d0557dbb8f..31f32706e9eb684d192b27c8dc6033c9789d25fa 100644 (file)
@@ -1,10 +1,9 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        sckstrm.h
+// Name:        wx/sckstrm.h
 // Purpose:     wxSocket*Stream
 // Author:      Guilhem Lavaux
 // Modified by:
 // Created:     17/07/97
-// RCS-ID:      $Id$
 // Copyright:   (c)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -29,9 +28,9 @@ protected:
     size_t OnSysWrite(const void *buffer, size_t bufsize);
 
     // socket streams are both un-seekable and size-less streams:
-    wxFileOffset OnSysTell() const 
+    wxFileOffset OnSysTell() const
         { return wxInvalidOffset; }
-    wxFileOffset OnSysSeek(wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode)) 
+    wxFileOffset OnSysSeek(wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode))
         { return wxInvalidOffset; }
 
     wxDECLARE_NO_COPY_CLASS(wxSocketOutputStream);
@@ -50,9 +49,9 @@ protected:
 
     // socket streams are both un-seekable and size-less streams:
 
-    wxFileOffset OnSysTell() const 
+    wxFileOffset OnSysTell() const
         { return wxInvalidOffset; }
-    wxFileOffset OnSysSeek(wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode)) 
+    wxFileOffset OnSysSeek(wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode))
         { return wxInvalidOffset; }
 
     wxDECLARE_NO_COPY_CLASS(wxSocketInputStream);