
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Make sure (within the DLL) that you marshall the string specifically. Build 600+ broke a lot of DLLs that pass strings. Your MQL4 code may not change at all from the original, but the DLL code will need to specifically marshall the strings as the correct type.
In .NET this can be done as:
[MarshalAs(UnmanagedType.LPWStr)]
something like this for C#:
[return: MarshalAs(UnmanagedType.LPWStr)]
string GV_GetNamedString([MarshalAs(UnmanagedType.LPWStr)] string StrName, [MarshalAs(UnmanagedType.LPWStr)] string Error);
See this code for more complete examples in C# and the other side in MQL4:
http://vb6-to-csharp.blogspot.com/2014/05/code-to-export-c-dll-to-metatrader.html
Also, see this topic:
https://forum.mql4.com/60905
Make sure (within the DLL) that you marshall the string specifically. Build 600+ broke a lot of DLLs that pass strings. Your MQL4 code may not change at all from the original, but the DLL code will need to specifically marshall the strings as the correct type.
In .NET this can be done as:
[MarshalAs(UnmanagedType.LPWStr)]
something like this for C#:
[return: MarshalAs(UnmanagedType.LPWStr)]
string GV_GetNamedString([MarshalAs(UnmanagedType.LPWStr)] string StrName, [MarshalAs(UnmanagedType.LPWStr)] string Error);
See this code for more complete examples in C# and the other side in MQL4:
http://vb6-to-csharp.blogspot.com/2014/05/code-to-export-c-dll-to-metatrader.html
Also, see this topic:
https://forum.mql4.com/60905
Following code works fine in old builds but not in 600+ builds. In new builds it only passes and get back first letter of the strings. Any one here to tell how to fix this for new builds??
i have wrote a dll which could pass string to mq4(Version 670),you could have a try like the following in your dll:
dll:
wchar_t* GV_GetNamedString(wchar_t* StrName, wchar_t* Error);
import in mq4 as you do:
string GV_GetNamedString(string StrName, string Error);
i have wrote a dll which could pass string to mq4(Version 670),you could have a try like the following in your dll:
dll:
wchar_t* GV_GetNamedString(wchar_t* StrName, wchar_t* Error);
import in mq4 as you do:
string GV_GetNamedString(string StrName, string Error);
Is it a memory-safe way to avoid leaks? I am not a DLL expert, I just wonder if the string created in the DLL gets properly disposed.