This data structure is only used by the C file and has no reason to be
exposed in the header.
static TAILQ_HEAD(, LiveDevice_) live_devices =
TAILQ_HEAD_INITIALIZER(live_devices);
+typedef struct LiveDeviceName_ {
+ char *dev; /**< the device (e.g. "eth0") */
+ TAILQ_ENTRY(LiveDeviceName_) next;
+} LiveDeviceName;
+
/** List of the name of devices
*
* As we don't know the size of the Storage on devices
Storage storage[];
} LiveDevice;
-typedef struct LiveDeviceName_ {
- char *dev; /**< the device (e.g. "eth0") */
- TAILQ_ENTRY(LiveDeviceName_) next;
-} LiveDeviceName;
-
void LiveDevRegisterExtension(void);
int LiveRegisterDeviceName(const char *dev);