summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/windows/netdev.c
blob: 29bb4a176964e988c84dd30b010b85ab6e6cb2f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "emu.h"
#include "netdev_pcap.h"

void winnetdev_init(running_machine &machine)
{
	init_pcap();
}

void winnetdev_deinit(running_machine &machine)
{
	deinit_pcap();
}