Unhandled exception using Build 600 (working good with 509)

 

The ex4 file calls a mqh file and from the mqh file is called a DLL file. It was working good with build 509 but now appears:

Unhandled exception 0xC000096

What does this means?

Any help?

Ps. It's running in portable mode.

 
kaleb:

The ex4 file calls a mqh file and from the mqh file is called a DLL file. It was working good with build 509 but now appears:

Unhandled exception 0xC000096

What does this means?

Any help?

Ps. It's running in portable mode.

That means you have to adapt your code.

Strings are now presented in Unicode format, though they were in ANSI format (single byte ones) before. That should be considered if the program uses DLLs and passes string variables to them. When calling Windows API functions, Unicode versions of these functions should be used.

There can be other reasons.
 
angevoyageur:

That means you have to adapt your code.

There can be other reasons.


Thank you.

Can you provide an example?

Reason: