comparison net.h @ 1648:b7ecd0d6a77b mame_interp

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Tue, 25 Dec 2018 11:12:26 -0800
parents 4f94e0f90c83
children
comparison
equal deleted inserted replaced
1509:36732f5c2281 1648:b7ecd0d6a77b
1 #ifndef NET_H_
2 #define NET_H_
3 #include <stdint.h>
4
5 typedef struct {
6 uint8_t ip[4];
7 uint8_t net_mask[4];
8 } iface_info;
9
10 uint8_t get_host_address(iface_info *out);
11
12 #endif //NET_H_