// 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__ */