mars-nwe/include/emutli1.h

44 lines
1.6 KiB
C
Raw Permalink Normal View History

2011-11-13 00:38:59 +01:00
/* emutli1.h 05-May-98 */
2011-11-13 00:38:56 +01:00
/* (C)opyright (C) 1993,1995 Martin Stover, Marburg, Germany
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef _EMUTLI1_H_
#define _EMUTLI1_H_
extern void set_locipxdebug(int debug);
2011-11-13 00:38:57 +01:00
extern int read_interface_data(uint8* data, uint32 *rnet, uint8 *node,
int *flags, uint8 *name);
2011-11-13 00:38:56 +01:00
extern int get_interface_frame_name(char *name, uint32 net);
2011-11-13 00:38:59 +01:00
extern int add_device_net(char *devname, int frame, uint32 netnum);
2011-11-13 00:38:57 +01:00
2011-11-13 00:38:56 +01:00
extern int get_frame_name(uint8 *framename, int frame);
2011-11-13 00:38:59 +01:00
extern int ipx_inuse(int mode);
2011-11-13 00:38:58 +01:00
extern int init_ipx(uint32 network, uint32 node, int ipx_debug, int flags);
2011-11-13 00:38:56 +01:00
extern void exit_ipx(int full);
2011-11-13 00:38:58 +01:00
extern int init_dev(char *devname, int frame, uint32 network, int wildmask);
2011-11-13 00:38:56 +01:00
extern void exit_dev(char *devname, int frame);
extern void ipx_route_add(uint32 dest_net,
uint32 route_net,
uint8 *route_node);
extern void ipx_route_del(uint32 net);
#endif