[Quickfix-developers] _DllMainCRTStartup
Brought to you by:
orenmnero
From: Sameer S. <tog...@ya...> - 2008-09-25 21:27:27
|
Hi, public void InitQuickFix() { settings = new QuickFix.SessionSettings(_sConfigFilePath); fixLocalImplementation = new FIXLocalImplementation(); storeFactory = new QuickFix.FileStoreFactory(settings); logFactory = new QuickFix.FileLogFactory(settings); msgFactory = new QuickFix.DefaultMessageFactory(); initiator = new QuickFix.SocketInitiator(fixLocalImplementation, storeFactory, settings, logFactory, msgFactory); } Whenever I try to call InitQuickFix(), the application skips going inside the function. I did a "step into" from the calling function and it took me inside a crtdll.c class (which is not part of my solution) and this functiuon BOOL WINAPI _DllMainCRTStartup( HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved ) Does anyone have any idea why its doing that ??? It does'nt even raise the exception , it just simply skips the InitQuickFix(). It looks like the application is having trouble loading the dll or somethin g. I checked and this line of code is casuing this problem settings = new QuickFix.SessionSettings(_sConfigFilePath); Thanks, |