Looking at past posts concerning shared data between EXEs and DLLs containing globals I began to wonder if passing a pointer to a DLL could be used instead of memory-mapped files.
For example, the EXE contains globals A and B, A.DLL contains globals B and C, and B.DLL contains globals C and D.
If the EXE passes A_PTR to A.DLL, can A.DLL then change the data contained in global A?
------------------
For example, the EXE contains globals A and B, A.DLL contains globals B and C, and B.DLL contains globals C and D.
If the EXE passes A_PTR to A.DLL, can A.DLL then change the data contained in global A?
------------------
Comment