Re: ctypes:Multiple library access problem

2010-05-06 Thread Dave Angel
Massi wrote: Hi everyone, in my script I need to execute multiple separated loading of the same dll library, in order to handle the internal variables with different threads. Consider the followin piece of code: lib1 = cdll.LoadLibrary(MyLib.dll)) lib2 = cdll.LoadLibrary(MyLib.dll)) lib1.var1

RE: ctypes:Multiple library access problem

2010-05-06 Thread Stefan Schukat
Massi wrote: Hi everyone, in my script I need to execute multiple separated loading of the same dll library, in order to handle the internal variables with different threads. Consider the followin piece of code: lib1 = cdll.LoadLibrary(MyLib.dll)) lib2 =