V
Venkat
Hi,
I got a simple cpp application which calls a dll at runtime.
The application is calling the dll and the dll is also doing the required
thing it suppose to do but
when after dll is done it has to return back to the calling application.
I am having the problem in dll returning back to the calling application.
Infact the application stops once
the dll is called.
Can some one please let me know where i am going wrong.
Sample Code
-------------------
dll
int CIDPDBInstall::IDPInstallCSVFile(const std::string m_CSVFileName)
{
......
......
......
}
Application
{
.......
ret1 = obj->IDPInstallCSVFile(m_CSVFileName);
}
regards,
Venkat
I got a simple cpp application which calls a dll at runtime.
The application is calling the dll and the dll is also doing the required
thing it suppose to do but
when after dll is done it has to return back to the calling application.
I am having the problem in dll returning back to the calling application.
Infact the application stops once
the dll is called.
Can some one please let me know where i am going wrong.
Sample Code
-------------------
dll
int CIDPDBInstall::IDPInstallCSVFile(const std::string m_CSVFileName)
{
......
......
......
}
Application
{
.......
ret1 = obj->IDPInstallCSVFile(m_CSVFileName);
}
regards,
Venkat