any help greatly appreciated.
craig
--
----------------------------------------------------------------------
_--_|\ From: Craig Heading
/ \ Mudgee NSW Australia
\_.--._/ email: cr...@winsoft.net.au
v Phone: (063) 72 4548
----------------------------------------------------------------------
You are playing in the 16bit world, aren't you ?
The memory allocated in a DLL belongs to the
executable that first loaded it unless you
do the allocation with the GMEM_SHARE flag.
In this case, the memory belongs to the DLL itself.
But, of course, that implies that you use GlobalAlloc
to allocate your memory.
David