tags:

views:

76

answers:

1

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

+1  A: 

OpenMutex, then WaitForSingleObject

JSBangs
Thanks for the quick response!
Jim C