diff options
author | 2011-12-12 14:20:12 +0000 | |
---|---|---|
committer | 2011-12-12 14:20:12 +0000 | |
commit | 6e79bb2629d4463830fd1739423a950c042c7b0f (patch) | |
tree | fd550398ed5ea6a3fe9c65ee8d42cb27899d372b /src/emu/dinetwork.h | |
parent | 9e467dfcf6c70fd39d6e80271936f5699981db0d (diff) |
Sync with MESS all credited there (no whatsnew)
Diffstat (limited to 'src/emu/dinetwork.h')
-rw-r--r-- | src/emu/dinetwork.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/dinetwork.h b/src/emu/dinetwork.h index f7f2e38218d..592853af78a 100644 --- a/src/emu/dinetwork.h +++ b/src/emu/dinetwork.h @@ -15,6 +15,7 @@ public: const char *get_mac() { return m_mac; } bool get_promisc() { return m_promisc; } + int get_interface() { return m_intf; } int send(UINT8 *buf, int len); virtual void recv_cb(UINT8 *buf, int len); @@ -25,5 +26,6 @@ protected: char m_mac[6]; float m_bandwidth; class netdev *m_dev; + int m_intf; }; #endif |