how to share one dll with multiple instance
-
i need to know how to share on Dll with multiple client any link or tutorial which focus on these isuue would be appreciated thanx
-
i need to know how to share on Dll with multiple client any link or tutorial which focus on these isuue would be appreciated thanx
Do you have access to the DLL code. If yes i cud give u pointers. Else try to find out if the dll is thread safe where multiple client can access it :) Dimple
-
Do you have access to the DLL code. If yes i cud give u pointers. Else try to find out if the dll is thread safe where multiple client can access it :) Dimple
Thanx 4 reply dimple i refered one book where i read,u can share the dll with memory mapping to access multiple client like #pragma dat_seg() but i no idea how to implement that one. can give me some idea thanx
-
Thanx 4 reply dimple i refered one book where i read,u can share the dll with memory mapping to access multiple client like #pragma dat_seg() but i no idea how to implement that one. can give me some idea thanx
this sounds real interesting let me know how u do it if u do get the answer. in my case i had to add a class to the dll code & create objects for each new client & maintain a map of those objects :)
-
this sounds real interesting let me know how u do it if u do get the answer. in my case i had to add a class to the dll code & create objects for each new client & maintain a map of those objects :)
Try looking at this: http://www.codeproject.com/dll/data\_seg\_share.asp Mike