Fix for network compile

This commit is contained in:
Robert 2014-10-22 23:18:05 +11:00
parent 3dcf8d65af
commit 3761dcbb7c
4 changed files with 3862 additions and 3862 deletions

File diff suppressed because it is too large Load Diff

View File

@ -406,7 +406,7 @@ void osd_interface::init_subsystems()
machine().add_notifier(MACHINE_NOTIFY_RESUME, machine_notify_delegate(FUNC(osd_interface::input_resume), this));
output_init();
#ifdef USE_NETWORK
#ifndef DONT_USE_NETWORK
network_init();
#endif
midi_init();
@ -489,7 +489,7 @@ void osd_interface::exit_subsystems()
sound_exit();
input_exit();
output_exit();
#ifdef USE_NETWORK
#ifndef DONT_USE_NETWORK
network_exit();
#endif
midi_exit();

View File

@ -205,7 +205,7 @@ public:
virtual void input_pause();
virtual void input_resume();
virtual bool output_init();
#ifdef USE_NETWORK
#ifndef DONT_USE_NETWORK
virtual bool network_init();
#endif
@ -213,7 +213,7 @@ public:
virtual void window_exit();
virtual void input_exit();
virtual void output_exit();
#ifdef USE_NETWORK
#ifndef DONT_USE_NETWORK
virtual void network_exit();
#endif

View File

@ -266,7 +266,7 @@ public:
virtual void input_pause();
virtual void input_resume();
virtual bool output_init();
#ifdef USE_NETWORK
#ifndef DONT_USE_NETWORK
virtual bool network_init();
#endif
@ -274,7 +274,7 @@ public:
virtual void window_exit();
virtual void input_exit();
virtual void output_exit();
#ifdef USE_NETWORK
#ifndef DONT_USE_NETWORK
virtual void network_exit();
#endif