Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS General Discussion » Prof-UIS Version as define? Collapse All
Subject Author Date
Timo Stripf Jan 11, 2008 - 6:11 AM

Exists there any define in Prof-UIS.h containg the current prof-uis version number?

Technical Support Jan 11, 2008 - 11:24 AM

You can use the GetVersionDWORD() and GetVersionString() methods of the CExtCmdManager::CExtCmdManagerAutoPtr() class for retrieving the current version of the library:

DWORD dwVersion = g_CmdManager.GetVersionDWORD();
CString sVersion = g_CmdManager.GetVersionString();


Technical Support Jan 11, 2008 - 11:18 AM

Yes, the version is defined in

#define __PROF_UIS_VERSION_DWORD    DWORD( 0x02080300 )
#define __PROF_UIS_VERSION                 0x02080300

Timo Stripf Jan 12, 2008 - 2:32 PM

Perfect!

Exactly what i needed.

Thx