[Solved] In a remote thread, how do I call functions whose parameters contain pointers? [closed]
The immediate problem in this code is that you’re storing pointers to the string parameters in your record. Those pointers are addresses in your main process; they are not valid in the target process. You should store those values in fixed-size arrays in your record, just like you’re already doing with the module and function … Read more