
Originally Posted by
ClockWorK
I could be way off here. If so, sorry.
GlobalAlloc only returns a handle to a memory location. To get a true pointer, you need to call GlobalLock after GlobalAlloc.
Also, that pointer is only useful within your process. Other processes cannot directly access that memory location in your process.
Edit: Also, for the frontend I'm working on (DriveLine), my plan was that the plugins would communicate only with the frontend, via SendMessage. Plugins can set or retrieve certain values based on the params. So one plugin can send a command to the frontend telling it the current speed. Then, another plugin can query the frontend for the speed.
Bookmarks