Hi,
I added the following code in a DLL of mine:
#pragma data_seg(".shared")
BOOL my_flag = false;
#pragma data_seg()
#pragma comment(linker, "/section:.shared,RWS")
But after some user application calls a function that sets it to 'true', it still shows up 'false' to the instance of this DLL in another user application.
Any help would be appreciated.
Thanks,
Ofer.