DLLs communicating
Posted: Wed Feb 23, 2005 1:14 am
Hello.
I'd like to have 2 DLLs that share data.
I explain
For example, I use a structure :
I want that the 2 DLLs use the same structure [ at the same memory adress then ]
Is there a way to send the Structure pointer from 1 DLL and use it in another one ?
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 ?