Has there been any work on VirtualAllocEx for allocating memory to other processes?
I would like to get this going to allow me to run mta:vc and blow away other people in gta vice city (I believe that is a noble cause).
To get me started I have a question.
Is there a mechanism for one wine process (thread?) to send a message to another process (thread?) and receive a response, ie a pointer?
Or, can I use the wineserver as a mediator that passess messages between two wine processes?
For example: app1 sends a message "allocate 1MB of virtual memory in app2" to the wineserver. The wineserver then tells app2 to "allocate 1MB of virtual memory". App2 replys to the wineserver the virtual location of the allocated memory. Wineserver replys to app1 giving the location.
App1 can then use the result in WriteProcessMemory.