diff options
author | 2022-08-28 13:23:40 -0400 | |
---|---|---|
committer | 2022-08-28 13:23:40 -0400 | |
commit | f52b402f2416ddfd646afe2d132c16d78c6fe9c3 (patch) | |
tree | adeac9e7f91d2b9392880c963c2834f5f8a8320a /src/emu/network.cpp | |
parent | 45a99ad00e04549d3febd28723a73bdf1ba4db67 (diff) |
OSD/network interface cleanup
- Move osd_midi_device from osdcore.h to osdepend.h
- Move osd_list_network_adapters from osdcore.h to osdnet.h (was already defineduniquely in osdnet.cpp)
- Move #include <cstdarg> from osdcore.h to emu.h
- Remove dinetwork.h from emu.h
Diffstat (limited to 'src/emu/network.cpp')
-rw-r--r-- | src/emu/network.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/emu/network.cpp b/src/emu/network.cpp index 68c9f93c196..0ffff1616cc 100644 --- a/src/emu/network.cpp +++ b/src/emu/network.cpp @@ -8,13 +8,16 @@ ***************************************************************************/ -#include <cctype> - #include "emu.h" #include "network.h" + #include "config.h" +#include "dinetwork.h" + #include "xmlfile.h" +#include <cctype> + //************************************************************************** // NETWORK MANAGER //************************************************************************** |