]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sckaddr.h
DrawRotatedText() for MSW
[wxWidgets.git] / include / wx / sckaddr.h
index 74f0c57a35d2a49120f44f06a0b94c9341ffb56d..25ee60d4980ed8783fe70981a81ee6dbb70e7c90 100644 (file)
@@ -60,9 +60,6 @@ public:
   wxString Hostname();
   unsigned short Service();
 
-  void Build(struct sockaddr*& addr, size_t& len);
-  void Disassemble(struct sockaddr *addr, size_t len);
-
   inline int Type() { return wxSockAddress::IPV4; }
 };
 
@@ -90,7 +87,9 @@ public:
 
 #ifdef __UNIX__
 #include <sys/socket.h>
-#include <sys/un.h>
+#ifndef __VMS__
+# include <sys/un.h>
+#endif
 
 class WXDLLEXPORT wxUNIXaddress : public wxSockAddress {
   DECLARE_DYNAMIC_CLASS(wxUNIXaddress)