Salome HOME
Revert "Synchronize adm files"
[samples/component.git] / src / TestFunctions / DynInvoke.hxx
index 9847ef995a1e0d912e9e6192da93c077b1cfe4d3..77872634cafd07e1bdfdf7b9b84c78d3acb38b43 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 #ifndef _DYNINVOKE_
 #define _DYNINVOKE_
 
+#ifdef WIN32
+# if defined DYNINVOKE_EXPORTS || defined DynInvoke_EXPORTS
+#  define DYNINVOKE_EXPORT __declspec( dllexport )
+# else
+#  define DYNINVOKE_EXPORT __declspec( dllimport )
+# endif
+#else
+# define DYNINVOKE_EXPORT
+#endif
+
 struct ServicesAnyData {
 
   std::string Name;
@@ -38,9 +48,9 @@ struct ServicesAnyData {
 // dynamic call for function with list of in parameters, followed 
 // by out parameters with no return value
 
-void DynInvoke(Engines::EngineComponent_ptr obj,
-              const char *method, 
-              ServicesAnyData * inParams, int nInParams,
-              ServicesAnyData * outParams, int nOutParams);
+void DYNINVOKE_EXPORT DynInvoke(Engines::EngineComponent_ptr obj,
+                            const char *method, 
+                            ServicesAnyData * inParams, int nInParams,
+                            ServicesAnyData * outParams, int nOutParams);
 
 #endif