mclInitializeApplication fails
14 次查看(过去 30 天)
显示 更早的评论
Hi, I have compiled a DLL that needs to start MCR with the function mclInitializeApplication
all other codes I have written (which didn't use this yet) compiled and ran fine within metatrader (I am linking metatrader 5, a trading platform, with matlab)
the code that creates the error code is this:
bool __stdcall IsStartSMA(void)
{
if(bIsNeoStart == false)
{
if(!mclInitializeApplication(NULL,0) )
{
MessageBoxA(NULL, (LPSTR)"Can't start MATLAB MCR!",
(LPSTR) "MATLAB DLL: ERROR!", MB_OK|MB_ICONSTOP);
return false;
}else
{
bIsNeoStart = NeoSMAInitialize();
};
};
return bIsNeoStart;
}
It's pretty standard and every other thing I tried up till now worked perfectly but this is the first thing I attempted with mclInitializeApplication
2 个评论
Kaustubha Govind
2011-6-25
Use mclGetLastErrorMessage to examine the error message - this will gice us more information about what could be causing the failure.
回答(4 个)
Walter Roberson
2011-6-25
I searched and found other people reporting the same problem. One of them said they solved the problem but didn't say how. The others did not arrive at a solution. Steve Lord of Mathworks recommended contacting Mathworks Technical Support on this issue.
0 个评论
Stijn Helsen
2011-7-5
I don't know if it has anything to do with it, but when I look to Mathworks demo code (matrixdriver), thy call "mclmcrInitialize();" (in the main routine) before calling the mclInitializeApplication routine. When I remove the first, I also get a similar problem. I don't see this documented. I'm trying the same from within DLL-code, but there it doesn't work.
0 个评论
Stijn Helsen
2011-7-5
I'm convinced that what I've just write, I did yesterday, but trying it again (removing the call to mclmcrInitialize) doesn't make it working wrong....
0 个评论
Alan Frankel
2023-7-18
编辑:Alan Frankel
2023-7-18
There aren't enough details here to determine what could have caused the problem, which is now 12 years in the past. However, customers should not need to call mclmcrInitialize before calling mclInitializeApplication, and the documentation for mclmcrInitialize now states this. Calls to mclmcrInitialize have been removed from demo/example code.
It's also worth noting that mclGetLastErrorMessage is generally helpful only after mclInitializeApplication succeeds. It's used to report problems with functions that are called later, such as library initialization functions (as opposed to application initialization).
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 C Shared Library Integration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!