Include : modifiche per versioni a 64bit.

This commit is contained in:
Dario Sassi
2014-01-17 17:22:26 +00:00
parent 71b50623ea
commit d12edf7070
2 changed files with 14 additions and 6 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ class DistPointCurve
public :
EGK_EXPORT bool GetSqDist( double& dSqDist) ;
EGK_EXPORT bool GetDist( double& dDist) ;
EGK_EXPORT int GetNbrMinDist( void) { return m_Info.size() ; }
EGK_EXPORT int GetNbrMinDist( void) { return (int) m_Info.size() ; }
EGK_EXPORT bool GetMinDistPoint( int nInd, Point3d& ptMinDist, int& nFlag) ;
EGK_EXPORT bool GetMinDistPoint( double dNearParam, Point3d& ptMinDist, int& nFlag) ;
EGK_EXPORT bool GetParamAtMinDistPoint( int nInd, double& dParam, int& nFlag) ;
+13 -5
View File
@@ -17,9 +17,17 @@
#define EGTLIBDIR "/EgtDev/Lib/"
// Dichiarazione suffisso librerie
#if defined( _DEBUG)
#define EGTLIBVER "D32"
#else
#define EGTLIBVER "R32"
#endif
#if defined( _WIN64)
#if defined( _DEBUG)
#define EGTLIBVER "D64"
#else
#define EGTLIBVER "R64"
#endif
#elif defined( _WIN32)
#if defined( _DEBUG)
#define EGTLIBVER "D32"
#else
#define EGTLIBVER "R32"
#endif
#endif