#ifndef DHCP_APIDEF_H #define DHCP_APIDEF_H class SSTRING; struct DHCP_API{ // Get the IP address associated with a MAC int (*getip) (DHCP_API *o, const char *mac, SSTRING &ip); // Release the IP address associated with a MAC int (*release) (DHCP_API *o, const char *mac); }; #endif