Hello everyone,
I have a math function dll (MathFuncsDll.d ll) with several different functions. I would like to explicitly (dynamically) load one of the functions in a new thread. I use MSFT CreateThread to create the thread and within this call there is a function, let us call it ThreadFunc, that is called. In ThreadFunc I try to load the library (MathFuncsDll.D ll) and call one of the functions in the library. Unfortunately, nothing happens.... Load Library doesn't do anything.
I'm missing something pretty fundamental.
Looking for some guidance.
Thanks,
Mark Allyn
I have a math function dll (MathFuncsDll.d ll) with several different functions. I would like to explicitly (dynamically) load one of the functions in a new thread. I use MSFT CreateThread to create the thread and within this call there is a function, let us call it ThreadFunc, that is called. In ThreadFunc I try to load the library (MathFuncsDll.D ll) and call one of the functions in the library. Unfortunately, nothing happens.... Load Library doesn't do anything.
I'm missing something pretty fundamental.
Looking for some guidance.
Thanks,
Mark Allyn
Comment