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