I have a C# app that creates a mutex:
var mutex = new Mutex(true, // desire initial ownership
"MyMutexName",
out owned);
How would an unmanaged C++ app detect when this mutex is released? (I'm not a C++ dev)
Thanks in advance, Jim