I am attempting to code some plugins to use with MIDI sequencers but have hit a stumbling block. I can't use global-scope variables to store information because multiple instances of the .dll can exist which share memory.

How do I create a class (for re-usability purposes in other plugins) containing 2 dimensional array and other variables the content of which is to be shared between functions? If that is possible, how would I read and write the data from the function in the framework where I do the processing?

link|improve this question
feedback

4 Answers

What do you mean by "multiple instances of the DLL"? In Win32, every process has its own private address space, and DLLs with global variables are specific to that process. A DLL cannot be loaded more than once into the same process.

In the bad old days of Win16, DLL global variable space was shared between processes, which led to no end of headaches.

link|improve this answer
Yes, sorry I should have been more specific. Resources are intentionally shared with this framework to avoid re-loading commonly shared stuff like GUI elements. – Paul Reilly Jan 6 '11 at 11:30
feedback

Are you looking for the static keyword?

static int i = 1; //this keeps its value at each call
link|improve this answer
Thanks for highlighting that, I'll need to test that to see if it works independently with multiple objects created from the one class. – Paul Reilly Jan 6 '11 at 11:35
feedback

Please refer to this link for details on thread local storage in DLL which can help in this scenario

link|improve this answer
Thanks but since "The TLS index is stored in a global variable" I cannot use it in this scenario. Thanks though. – Paul Reilly Jan 6 '11 at 11:36
That is intentional the Idea is that TLS index will be same for all the threads, however when a thread queries for its memory using TlsGetValue(..) it gets its unique memory pointer. As TLS index is global any function in DLL can call get access to this memory. You can create macros to make this convenient. – Neera Jan 6 '11 at 12:18
feedback

It turns out that it was a C++ virgin error where I cough just needed to declare the variables necessary in the cough class declaration of the plugin class.

Thanks everyone for the help. I may well be back with questions about how to get info from classes that have all sorts of whacky pointers n stuff as arguments.

Stay tuned! :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.