eapol/eapol_framework/eapol_common/include/eap_general_header_base.h
changeset 49 43351a4f2da3
parent 26 9abfd4f00d37
--- a/eapol/eapol_framework/eapol_common/include/eap_general_header_base.h	Fri Sep 03 09:22:44 2010 +0300
+++ b/eapol/eapol_framework/eapol_common/include/eap_general_header_base.h	Thu Sep 16 13:07:04 2010 +0300
@@ -26,12 +26,35 @@
 #include "eap_am_assert.h"
 #include "eap_am_tools.h"
 #include "eap_tools.h"
+#include "eap_am_export.h"
+// Start: added by script change_export_macros.sh.
+#if defined(EAP_NO_EXPORT_EAP_GENERAL_HEADER_BASE_H)
+	#define EAP_CLASS_VISIBILITY_EAP_GENERAL_HEADER_BASE_H EAP_NONSHARABLE 
+	#define EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H 
+	#define EAP_C_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H 
+	#define EAP_FUNC_EXPORT_EAP_GENERAL_HEADER_BASE_H 
+	#define EAP_C_FUNC_EXPORT_EAP_GENERAL_HEADER_BASE_H 
+#elif defined(EAP_EXPORT_EAP_GENERAL_HEADER_BASE_H)
+	#define EAP_CLASS_VISIBILITY_EAP_GENERAL_HEADER_BASE_H EAP_EXPORT 
+	#define EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H EAP_FUNC_EXPORT 
+	#define EAP_C_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H EAP_C_FUNC_EXPORT 
+	#define EAP_FUNC_EXPORT_EAP_GENERAL_HEADER_BASE_H EAP_FUNC_EXPORT 
+	#define EAP_C_FUNC_EXPORT_EAP_GENERAL_HEADER_BASE_H EAP_C_FUNC_EXPORT 
+#else
+	#define EAP_CLASS_VISIBILITY_EAP_GENERAL_HEADER_BASE_H EAP_IMPORT 
+	#define EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H EAP_FUNC_IMPORT 
+	#define EAP_C_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H EAP_C_FUNC_IMPORT 
+	#define EAP_FUNC_EXPORT_EAP_GENERAL_HEADER_BASE_H 
+	#define EAP_C_FUNC_EXPORT_EAP_GENERAL_HEADER_BASE_H 
+#endif
+// End: added by script change_export_macros.sh.
+
 
 /** @file */
 
 /** This is general base class defining the view to packet header.
  */
-class EAP_EXPORT eap_general_header_base_c
+class EAP_CLASS_VISIBILITY_EAP_GENERAL_HEADER_BASE_H eap_general_header_base_c
 {
 private:
 	//--------------------------------------------------
@@ -64,36 +87,36 @@
 
 	/// Destructor does nothing special.
 	/// NOTE the header buffer is not deleted here.
-	EAP_FUNC_IMPORT virtual ~eap_general_header_base_c();
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H virtual ~eap_general_header_base_c();
 
 	/// Constructor does nothing special.
 	/// The tools parameter is pointer to tools object.
 	/// The header_buffer parameter is pointer to buffer of the packet including header and data.
 	/// The header_buffer_length parameter is length of the header_buffer.
-	EAP_FUNC_IMPORT eap_general_header_base_c(
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H eap_general_header_base_c(
 		abs_eap_am_tools_c * const tools,
 		void * const header_buffer,
 		const u32_t header_buffer_length);
 
 	/// This function returns the pointer to the offset of the data of the packet.
-	EAP_FUNC_IMPORT u8_t * get_header_offset(const u32_t offset, const u32_t data_length) const;
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H u8_t * get_header_offset(const u32_t offset, const u32_t data_length) const;
 
 	/// This function returns the pointer to the data of the packet.
-	EAP_FUNC_IMPORT u8_t * get_header_buffer(const u32_t data_length) const;
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H u8_t * get_header_buffer(const u32_t data_length) const;
 
 	/// This function sets the buffer of the packet.
 	/// The header_buffer parameter is pointer to buffer of the packet including header and data.
 	/// The header_buffer_length parameter is length of the header_buffer.
-	EAP_FUNC_IMPORT void set_header_buffer(u8_t * const header_buffer, const u32_t header_buffer_length);
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H void set_header_buffer(u8_t * const header_buffer, const u32_t header_buffer_length);
 
 	/// This function returns the length of the header buffer.
-	EAP_FUNC_IMPORT u32_t get_header_buffer_length() const;
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H u32_t get_header_buffer_length() const;
 
 	/// This function returns validity of the object.
-	EAP_FUNC_IMPORT bool get_is_valid() const;
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H bool get_is_valid() const;
 
 	/// This function returns pointer to the tools object.
-	EAP_FUNC_IMPORT abs_eap_am_tools_c * get_am_tools() const;
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H abs_eap_am_tools_c * get_am_tools() const;
 
 	/// This function checks the validity of derived header.
 	virtual eap_status_e check_header() const = 0;
@@ -101,9 +124,9 @@
 
 #if defined(USE_EAP_ERROR_TESTS)
 
-	EAP_FUNC_IMPORT void set_error_detected(const bool error_detected);
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H void set_error_detected(const bool error_detected);
 
-	EAP_FUNC_IMPORT bool get_error_detected();
+	EAP_FUNC_VISIBILITY_EAP_GENERAL_HEADER_BASE_H bool get_error_detected();
 
 #endif //#if defined(USE_EAP_ERROR_TESTS)