summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/netdev/none.cpp
blob: d5b1139230939a7319636b4269623b940c6ce4b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// license:BSD-3-Clause
// copyright-holders:Couriersud
/*
 * none.c
 *
 */

#include "netdev_module.h"
#include "modules/osdmodule.h"

class netdev_none : public osd_module, public netdev_module
{
public:
	netdev_none()
	: osd_module(OSD_NETDEV_PROVIDER, "none"), netdev_module()
	{
	}
	int init(const osd_options &options) { return 0; }
};

MODULE_DEFINITION(NETDEV_NONE, netdev_none)