]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/wince/net.h
OS X savvy implementation
[wxWidgets.git] / include / wx / msw / wince / net.h
CommitLineData
882dfc67
JS
1// Copyright 1998, Ben Goetter. All rights reserved.
2
3/*
39fc096d 4 patch holes in winsock
882dfc67
JS
5
6 WCE 2.0 lacks many of the 'database' winsock routines.
7 Stub just enough them for ss.dll.
8
9 getprotobynumber
10 getservbyport
11 getservbyname
12
13*/
14
15struct servent * WINSOCKAPI getservbyport(int port, const char * proto) ;
16
17struct servent * WINSOCKAPI getservbyname(const char * name,
18 const char * proto) ;
19struct protoent * WINSOCKAPI getprotobynumber(int proto) ;
20