summaryrefslogtreecommitdiffstatshomepage
path: root/trunk/src/emu/network.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/emu/network.h')
-rw-r--r--trunk/src/emu/network.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/trunk/src/emu/network.h b/trunk/src/emu/network.h
new file mode 100644
index 00000000000..a52bf73b621
--- /dev/null
+++ b/trunk/src/emu/network.h
@@ -0,0 +1,23 @@
+/***************************************************************************
+
+ 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__ */