Hi,
I have an application using the cdonts.dll. I use CoInitialize(NULL), pNewMail.CreateInstance and sends the mail. Everything is OK, and the mail is sent. But as I have read that you have to use CoUninitialize() at the end of the application I did so, and I get access violation. The debugger points at a Release row in comip.h:
void _Release() throw(){
if (m_pInterface != NULL) {
m_pInterface->Release(); // This row fails!
}
}
Thanks in advance for your help!
I have an application using the cdonts.dll. I use CoInitialize(NULL), pNewMail.CreateInstance and sends the mail. Everything is OK, and the mail is sent. But as I have read that you have to use CoUninitialize() at the end of the application I did so, and I get access violation. The debugger points at a Release row in comip.h:
void _Release() throw(){
if (m_pInterface != NULL) {
m_pInterface->Release(); // This row fails!
}
}
Thanks in advance for your help!