diff -r e863583e6720 -r c23bdf5a328a eapol/eapol_framework/eapol_common/include/eap_network_id_selector.h --- a/eapol/eapol_framework/eapol_common/include/eap_network_id_selector.h Fri Sep 17 08:30:11 2010 +0300 +++ b/eapol/eapol_framework/eapol_common/include/eap_network_id_selector.h Mon Oct 04 00:19:54 2010 +0300 @@ -24,13 +24,34 @@ #include "eap_tools.h" #include "eap_am_export.h" +// Start: added by script change_export_macros.sh. +#if defined(EAP_NO_EXPORT_EAP_NETWORK_ID_SELECTOR_H) + #define EAP_CLASS_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H EAP_NONSHARABLE + #define EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H + #define EAP_C_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H + #define EAP_FUNC_EXPORT_EAP_NETWORK_ID_SELECTOR_H + #define EAP_C_FUNC_EXPORT_EAP_NETWORK_ID_SELECTOR_H +#elif defined(EAP_EXPORT_EAP_NETWORK_ID_SELECTOR_H) + #define EAP_CLASS_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H EAP_EXPORT + #define EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H EAP_FUNC_EXPORT + #define EAP_C_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H EAP_C_FUNC_EXPORT + #define EAP_FUNC_EXPORT_EAP_NETWORK_ID_SELECTOR_H EAP_FUNC_EXPORT + #define EAP_C_FUNC_EXPORT_EAP_NETWORK_ID_SELECTOR_H EAP_C_FUNC_EXPORT +#else + #define EAP_CLASS_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H EAP_IMPORT + #define EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H EAP_FUNC_IMPORT + #define EAP_C_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H EAP_C_FUNC_IMPORT + #define EAP_FUNC_EXPORT_EAP_NETWORK_ID_SELECTOR_H + #define EAP_C_FUNC_EXPORT_EAP_NETWORK_ID_SELECTOR_H +#endif +// End: added by script change_export_macros.sh. #include "eap_variable_data.h" #include "eap_am_network_id.h" //-------------------------------------------------- -class EAP_EXPORT eap_network_id_selector_c +class EAP_CLASS_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H eap_network_id_selector_c : public eap_variable_data_c { private: @@ -39,25 +60,25 @@ public: - EAP_FUNC_IMPORT virtual ~eap_network_id_selector_c(); + EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H virtual ~eap_network_id_selector_c(); - EAP_FUNC_IMPORT eap_network_id_selector_c( + EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H eap_network_id_selector_c( abs_eap_am_tools_c * const tools); - EAP_FUNC_IMPORT eap_network_id_selector_c( + EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H eap_network_id_selector_c( abs_eap_am_tools_c * const tools, const eap_am_network_id_c * const network_id); - EAP_FUNC_IMPORT eap_status_e set_selector( + EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H eap_status_e set_selector( const eap_am_network_id_c * const network_id); - EAP_FUNC_IMPORT eap_network_id_selector_c( + EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H eap_network_id_selector_c( abs_eap_am_tools_c * const tools, const eap_network_id_selector_c * const selector); // - EAP_FUNC_IMPORT eap_network_id_selector_c * copy() const; + EAP_FUNC_VISIBILITY_EAP_NETWORK_ID_SELECTOR_H eap_network_id_selector_c * copy() const; };