IPX headers

2007-02-14 Thread Simon Sasburg
Ok so i'm trying to port a C winsock ipx application of mine to cygwin. problem is i can't find the needed IPX constants (or headers that contain them). with winsock this works: SOCKET ipx_sock = socket(AF_IPX, SOCK_DGRAM, NSPROTO_IPX); when including #include winsock2.h #include

Re: IPX headers

2007-02-14 Thread Corinna Vinschen
On Feb 14 20:43, Simon Sasburg wrote: Ok so i'm trying to port a C winsock ipx application of mine to cygwin. problem is i can't find the needed IPX constants (or headers that contain them). with winsock this works: SOCKET ipx_sock = socket(AF_IPX, SOCK_DGRAM, NSPROTO_IPX); when

Re: IPX headers

2007-02-14 Thread Simon Sasburg
Hmm, bummer... Well, after a bit of fiddling i got it to link with winsock even when compiling with cygwin. Not exactly what i wanted..., but heh, it works... Simon On 2/14/07, Corinna Vinschen [EMAIL PROTECTED] wrote: On Feb 14 20:43, Simon Sasburg wrote: Ok so i'm trying to port a C