Sharing Data between DLLs
I have dll, common.dll, which has global data. I want to share this global data with another dll. I've set the linker options on the common.dll as follows:
/SECTION:.bss, rws /SECTION:.data, rws.
When I step into the code it appears that both dlls have their own copy of the global data. What am I doing wrong?
Thanks.
Omar Canon

