mirror of
https://github.com/holub/mame
synced 2025-05-06 06:14:45 +03:00
24 lines
564 B
C
24 lines
564 B
C
/***************************************************************************
|
|
|
|
network.h
|
|
|
|
Core network interface functions and definitions.
|
|
|
|
Copyright Nicola Salmoria and the MAME Team.
|
|
Visit http://mamedev.org for licensing and usage restrictions.
|
|
|
|
***************************************************************************/
|
|
|
|
#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__ */
|