blob: 593c5b56c41becf469e9db36bef23152ea28d419 (
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:Carl
/***************************************************************************
network.h
Core network interface functions and definitions.
***************************************************************************/
#pragma once
#ifndef __EMU_H__
#error Dont include this file directly; include emu.h instead.
#endif
#ifndef __NETWORK_H__
#define __NETWORK_H__
void network_init(running_machine &machine);
#endif /* __NETWORK_H__ */
|