I was wondering what was the preferred method of communication with a proxy dll inside another program, the options i see are
a) communicate via sendmessage
b) allocate some memory in target program and create a new thread to check if the remote program has written anything in it in a loop and vice versa
c) read/write files
right now im going for option B because it seems the most efficient way to do it but if anybody knows about other options please share.