I'd like to have 2 DLLs that share data.
I explain
For example, I use a structure :
Code: Select all
Structure MyStructure
Name.s : Value.l : Index.l
EndStructure
Global WorkStructure.MyStructure
Is there a way to send the Structure pointer from 1 DLL and use it in another one ?

