I'm writing a real time library which exports a standardized interface (VST) and is hosted by external applications.
The library must publish a table that is viewable by any thread in the same process (if it knows where to look) - to be clear, this table must be viewable by ALL dlls in the process space - if they know where to look.
Accessing the table must be fast. Virtual memory seems like overkill, and I've considered using a window handle (and I still may) to message pump, but I'd prefer an even faster method, if one is available.
Also, a shared data segment in the PE is something I'd like to avoid if possible. I think I'd almost rather use a window handle.
I'm not concerned with synchronization at the moment, I can handle that after the fact. I'd just like some suggestions for the fastest technique to publish the table within a process space.