From a5de98f53f3116dc2f7dbfcdd611534f49fb7da3 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 21 Nov 2013 17:15:11 +0000 Subject: [PATCH] TestEGk : modifiche per verifica versioni di DLL. --- TestEGk.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/TestEGk.cpp b/TestEGk.cpp index 9c21202..d1fba08 100644 --- a/TestEGk.cpp +++ b/TestEGk.cpp @@ -15,6 +15,8 @@ #include "stdafx.h" #include #include +#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 ;