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

bool windows_osd_interface::network_init()
{
	init_pcap();
	return true;
}

void windows_osd_interface::network_exit()
{
	deinit_pcap();
}