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 SOCUDAALGORITHMSDEFS_H 00024 #define SOCUDAALGORITHMSDEFS_H 00025 00044 #if defined(_WIN32) 00045 00046 00047 # include <SoVersion.h> 00048 # if defined(_DEBUG) 00049 # define __INVCUDAALGORITHMSDLL "InventorCudaAlgorithmsD.dll" 00050 # define __INVCUDAALGORITHMSLIB "InventorCudaAlgorithmsD.lib" 00051 # else 00052 # define __INVCUDAALGORITHMSDLL "InventorCudaAlgorithms.dll" 00053 # define __INVCUDAALGORITHMSLIB "InventorCudaAlgorithms.lib" 00054 # endif 00055 00056 // This project is just a DLL, the functions are not supposed to be used from the outside. 00057 00058 # ifndef InventorCudaAlgorithms_EXPORTS 00059 # ifndef OIV_DISABLE_AUTOLINK 00060 # pragma comment(lib,__INVCUDAALGORITHMSLIB) 00061 # endif 00062 # endif 00063 00064 #else 00065 # define __INVCUDAALGORITHMSDLL "libInventorCudaAlgorithms" 00066 00067 #endif //win 00068 00069 // InventorCudaAlgorithms_EXPORTS is defined only when building InventorCudaAlgorithms dll 00070 #ifdef InventorCudaAlgorithms_EXPORTS 00071 # define VC_DLL_EXPORT 00072 #else 00073 # define VC_DLL_IMPORT 00074 #endif 00075 00076 00077 #endif //SOCUDAALGORITHMSDEFS_H 00078 00079 00080