eapol/eapol_framework/eapol_symbian/eap_if/include/eap_am_message_if_symbian.h
changeset 49 43351a4f2da3
parent 26 9abfd4f00d37
--- a/eapol/eapol_framework/eapol_symbian/eap_if/include/eap_am_message_if_symbian.h	Fri Sep 03 09:22:44 2010 +0300
+++ b/eapol/eapol_framework/eapol_symbian/eap_if/include/eap_am_message_if_symbian.h	Thu Sep 16 13:07:04 2010 +0300
@@ -31,13 +31,36 @@
 #include "abs_eap_am_message_if.h"
 #include "eap_am_message_if.h"
 #include "EapClientIf.h"
+#include "eap_am_export.h"
+// Start: added by script change_export_macros.sh.
+#if defined(EAP_NO_EXPORT_EAP_AM_MESSAGE_IF_SYMBIAN_H)
+	#define EAP_CLASS_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_NONSHARABLE 
+	#define EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H 
+	#define EAP_C_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H 
+	#define EAP_FUNC_EXPORT_EAP_AM_MESSAGE_IF_SYMBIAN_H 
+	#define EAP_C_FUNC_EXPORT_EAP_AM_MESSAGE_IF_SYMBIAN_H 
+#elif defined(EAP_EXPORT_EAP_AM_MESSAGE_IF_SYMBIAN_H)
+	#define EAP_CLASS_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_EXPORT 
+	#define EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_FUNC_EXPORT 
+	#define EAP_C_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_C_FUNC_EXPORT 
+	#define EAP_FUNC_EXPORT_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_FUNC_EXPORT 
+	#define EAP_C_FUNC_EXPORT_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_C_FUNC_EXPORT 
+#else
+	#define EAP_CLASS_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_IMPORT 
+	#define EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_FUNC_IMPORT 
+	#define EAP_C_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H EAP_C_FUNC_IMPORT 
+	#define EAP_FUNC_EXPORT_EAP_AM_MESSAGE_IF_SYMBIAN_H 
+	#define EAP_C_FUNC_EXPORT_EAP_AM_MESSAGE_IF_SYMBIAN_H 
+#endif
+// End: added by script change_export_macros.sh.
+
 
 class EapMessageBuffer;
 
 /**
  * Message interface on client side.
  */
-class EAP_EXPORT eap_am_message_if_symbian_c
+class EAP_CLASS_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H eap_am_message_if_symbian_c
 : public eap_am_message_if_c
 , public MSendPacketHandler
 , public EapClientIf
@@ -51,33 +74,33 @@
     /**
      * C++ default constructor.
      */
-    EAP_FUNC_IMPORT eap_am_message_if_symbian_c(
+    EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H eap_am_message_if_symbian_c(
 		abs_eap_am_tools_c * const tools,
 		const TEapRequests if_request);
 
 	/**
 	 * Destructor.
 	 */
-    EAP_FUNC_IMPORT virtual ~eap_am_message_if_symbian_c();
+    EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H virtual ~eap_am_message_if_symbian_c();
 
 	// - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 	// Functions from eap_am_message_if_c.
 
-    EAP_FUNC_IMPORT bool get_is_valid();
+    EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H bool get_is_valid();
 
-    EAP_FUNC_IMPORT void set_partner(abs_eap_am_message_if_c * const client);
+    EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H void set_partner(abs_eap_am_message_if_c * const client);
 
 	/// Function receives the data message from lower layer.
 	/// Data is formatted to Attribute-Value Pairs.
 	/// Look at eap_tlv_header_c and eap_tlv_message_data_c.
-    EAP_FUNC_IMPORT eap_status_e process_data(const void * const data, const u32_t length);
+    EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H eap_status_e process_data(const void * const data, const u32_t length);
 
 	// This is documented in abs_eap_stack_interface_c::configure().
-    EAP_FUNC_IMPORT eap_status_e configure(
+    EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H eap_status_e configure(
 		const eap_variable_data_c * const client_configuration);
 
 	// This is documented in abs_eap_stack_interface_c::shutdown().
-    EAP_FUNC_IMPORT eap_status_e shutdown();
+    EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H eap_status_e shutdown();
 
 	// - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 	// Functions from MSendPacketHandler.
@@ -85,7 +108,7 @@
 	/// Function sends the data message to lower layer.
 	/// Data is formatted to Attribute-Value Pairs.
 	/// Look at eap_tlv_header_c and eap_tlv_message_data_c.
-    EAP_FUNC_IMPORT eap_status_e send_data(const TDesC8& message);
+    EAP_FUNC_VISIBILITY_EAP_AM_MESSAGE_IF_SYMBIAN_H eap_status_e send_data(const TDesC8& message);
 
 
 private: