Problems manipulating strings through a stdcall to a dll
- by ibiza
I need to create a C++ dll that will be called from another program through stdcall.
What is needed : the caller program will pass an array of string to the dll and the dll should change the string values in the array. The caller program will then continue to work with these string values that came from the dll.
I made a simple test project and I…