00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (MMM YYYY) 00022 **=======================================================================*/ 00023 #if !defined SOOPENCLALGORITHMSDEFS_H 00024 #define SOOPENCLALGORITHMSDEFS_H 00025 00045 #if defined(_WIN32) 00046 00047 00048 # include <SoVersion.h> 00049 # if defined(_DEBUG) 00050 # define __INVOPENCLALGORITHMSDLL "InventorCLAlgorithmsD.dll" 00051 # define __INVOPENCLALGORITHMSLIB "InventorCLAlgorithmsD.lib" 00052 # else 00053 # define __INVOPENCLALGORITHMSDLL "InventorCLAlgorithms.dll" 00054 # define __INVOPENCLALGORITHMSLIB "InventorCLAlgorithms.lib" 00055 # endif 00056 00057 // This project is just a DLL, the functions are not supposed to be used from the outside. 00058 00059 # ifndef InventorCLAlgorithms_EXPORTS 00060 # ifndef OIV_DISABLE_AUTOLINK 00061 # pragma comment(lib,__INVOPENCLALGORITHMSLIB) 00062 # endif 00063 # endif 00064 00065 #else 00066 # define __INVOPENCLALGORITHMSDLL "libInventorCLAlgorithms" 00067 00068 #endif //win 00069 00070 // InventorOpenCLAlgorithms_EXPORTS is defined only when building InventorOpenCLAlgorithms dll 00071 #ifdef InventorCLAlgorithms_EXPORTS 00072 # define INVENTOROPENCLALGORITHMS_API VC_DLL_EXPORT 00073 #else 00074 # define INVENTOROPENCLALGORITHMS_API VC_DLL_IMPORT 00075 #endif 00076 00077 00078 #endif //SOOPENCLALGORITHMSDEFS_H 00079 00080 00081