I have a program for voice recording/switching (with Dialogic HMP)
The Dialogic software uses a callback function to send events to my program.
That works fine, but I suspect that when the system is very busy there is re-entrancy (callback is called before finished)
(It shouldn't do that, but the results say otherwise)
Can I use Threadsafe on an external callback to prevent re-entrancy?
The Dialogic software uses a callback function to send events to my program.
Code:
Function HMPCallback CDecl (ByVal Ev As Dword) As Long ... End Function
(It shouldn't do that, but the results say otherwise)
Can I use Threadsafe on an external callback to prevent re-entrancy?
Comment