hi there
i 'd like to use the cryptoworks for MFC DLL ()http://www.ssware.com/cryptolicensin...ensing_mfc.htm to add license capability to my software. I asked ssware about this issuebut i did not get any response from them so i hope to get some answer here ... I am surprised and I wonder how they can stay in business with such a poor customer support ...

In order to validate teh license the following code must be in the end application

CString validationKey
= _T("AQABAAP9Halqo3flELX/mwxLsWWgxWVPh4SXyBhZzOdQR5Lil1N584MqBijmwjjJzf4wpb UAMADAAA==");

CCryptoLicense license(_T("NgKEANj1wjxY2c0B2HUnNevazQG4AAEHTwMg/QO2PGQ9HmrAPjkCSHE+o2IocoY9917RoCSdZyJMIPDLQ3PnlAR ihbrUOpA9"),validationKey);

if(license.GetStatus()!=LS_Valid)
{
// AfxMessageBox(_T("License validation failed"));
}
else
{
Continue normal execution...
}

How can I embed this code in my Qt project. Basically I cannot understand what to include in my application to get access to MFC (I need CString, _T and I need to know which libraries I need ...)
The sample project they ship with the demo does not help. It is an MFC Visual Studio project ...
I do not need MFC GUI widget of course
I think this is possible overall (I need to call a DLL from cryptoworks so I just need how to inteface it ...)

Thanks for the help