Reputation: 4648
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?
Upvotes: 1
Views: 1266