TestEGk : modifiche per verifica versioni di DLL.

This commit is contained in:
Dario Sassi
2013-11-21 17:15:11 +00:00
parent 3246229e81
commit a5de98f53f
+10 -4
View File
@@ -15,6 +15,8 @@
#include "stdafx.h"
#include <iostream>
#include <string>
#include "\EgtDev\Include\EGkVersion.h"
#include "\EgtDev\Include\EGnVersion.h"
#include "\EgtDev\Include\EGkGeoPoint3d.h"
#include "\EgtDev\Include\EGnStringUtils.h"
@@ -47,18 +49,22 @@ wmain( int argc, wchar_t* argv[])
// versione del programma
#if defined( _WIN64)
#if defined( NDEBUG)
cout << "TestEGk64 v." STR_VER << endl ;
cout << "TestEGkR64.exe v." STR_VER << endl ;
#else
cout << "TestEGkD64 v." STR_VER << endl ;
cout << "TestEGkD64.exe v." STR_VER << endl ;
#endif
#else
#if defined( NDEBUG)
cout << "TestEGk v." STR_VER << endl ;
cout << "TestEGkR32.exe v." STR_VER << endl ;
#else
cout << "TestEGkD v." STR_VER << endl ;
cout << "TestEGkD32.exe v." STR_VER << endl ;
#endif
#endif
cout << GetEGkVersion() << endl ;
cout << GetEGnVersion() << endl ;
Point3d ptP ;
Vector3d vtV ;