]> icculus.org git repositories - btb/d2x.git/blob - arch/win32/winnet.c
Moved win32_* to win32/* (a la d1x), starting to get net working.
[btb/d2x.git] / arch / win32 / winnet.c
1 /*
2  * $Source: /cvs/cvsroot/d2x/arch/win32/winnet.c,v $
3  * $Revision: 1.2 $
4  * $Author: bradleyb $
5  * $Date: 2001-10-19 00:23:56 $
6  *
7  * Win32 net
8  *
9  * $Log: not supported by cvs2svn $
10  *
11  */
12
13 #ifdef HAVE_CONFIG_H
14 #include <conf.h>
15 #endif
16
17 #include "pstypes.h"
18
19 #include "ipx_drv.h"
20
21 extern struct ipx_driver ipx_win;
22
23 struct ipx_driver * arch_ipx_set_driver(char *arg)
24 {
25         return &ipx_win;
26 }