]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/wince/net.h
wxAny initial commit (closes #10932)
[wxWidgets.git] / include / wx / msw / wince / net.h
1 // Copyright 1998, Ben Goetter. All rights reserved.
2
3 /*
4 patch holes in winsock
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
15 struct servent * WINSOCKAPI getservbyport(int port, const char * proto) ;
16
17 struct servent * WINSOCKAPI getservbyname(const char * name,
18 const char * proto) ;
19 struct protoent * WINSOCKAPI getprotobynumber(int proto) ;
20