Hello,

I've developed application + libraryunder linux and now I need to run it under windows. So I installed precompiled binaries qt4-2.2 + ming. I have generated the dll and I compiled my application, it compiles all right, but the surprise is that application don't start it crashes with a windows message, I traduct to english "The application cannot be started" (0xC0000005) click ok to close it. I put a qDebug to first line of int main() but I don't see it, so the application crashes before.

I discovered the problem but no the solution, my application have classes that inherits from classes of the dll, for example a personalized QDialog. To reduce the problem I have created a little application that use the dll. If in a definition of some class in my application I quit the Q_OBJECT macro, the application runs without the error but I cannot connect slots, I don't understand this problem.

Thank you.