How to share data between different instance of same DLL
Nov 23, 2023 · 1 min read · Usually Dlls are loaded into its corresponding process address space. Indeed the code is shared between all instances but not the global data. So the issue that we might face is – how can we share common data between all dll instances? #pragma data_s...
Join discussion