Visual Studio 2012 |
Post Reply |
Author | |
Ben
Newbie Joined: 03 December 2012 Status: Offline Points: 1 |
Post Options
Thanks(0)
Posted: 03 December 2012 at 3:20pm |
Hi,
We've been using the codejock skinframework with Visual Studio 2010 with no problem. We're looking at upgrading to VS2012 and I am seeing an error that is coming from the XTSkinFrameworkPro.h file. The message is this: fatal error C1189: #error : "Unknown Visual Studio version" It looks like the XTSkinFrameworkPro.h only recognizes up to VS 2010 as evidenced by the excerpt from the file included below. Do I need to upgrade my codejock product? We are using version 15.0.2 of the skin framework. Thanks, Ben Excerpt: #if !defined(_XTP_DEMOMODE) && !defined(_XTP_RETAIL) #define _XTPLIB_VISUALSTUDIO_VERSION "" #else #if _MSC_VER < 1200 #define _XTPLIB_VISUALSTUDIO_VERSION "vc50" #endif #if _MSC_VER == 1200 #define _XTPLIB_VISUALSTUDIO_VERSION "vc60" #endif #if _MSC_VER == 1300 #define _XTPLIB_VISUALSTUDIO_VERSION "vc70" #endif #if _MSC_VER == 1310 #define _XTPLIB_VISUALSTUDIO_VERSION "vc71" #endif #if _MSC_VER == 1400 #define _XTPLIB_VISUALSTUDIO_VERSION "vc80" #endif #if _MSC_VER == 1500 #define _XTPLIB_VISUALSTUDIO_VERSION "vc90" #endif #if _MSC_VER == 1600 #define _XTPLIB_VISUALSTUDIO_VERSION "vc100" #endif #ifndef _XTPLIB_VISUALSTUDIO_VERSION #error "Unknown Visual Studio version" #endif #endif |
|
sub0
Newbie Joined: 18 September 2011 Status: Offline Points: 3 |
Post Options
Thanks(0)
|
hello
I resolved the same problem by just replacing the last '==' by '>=' |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |