#ifndef DEVCONF_APIDEF_H #define DEVCONF_APIDEF_H enum DEVCONF_TYPE { DEVCONF_MODEM, // Modem DEVCONF_LANDEV, // Lan device }; struct DEVCONF_API{ // Trigger a probe to locate a device of a given type. // Type is a string such as modem, netdev, ... // tb will contain what was found int (*probe) (DEVCONF_TYPE type, SSTRINGS &tb); }; #endif