L
Leon McCalla
I created a DLL that hooks int to a service and it ran for about 3 months
but now suddenly it is failing.
The problem is that the CreateMutex functions in the DLL are all failing due
to Error 183 (ERROR_ALREADY_EXISTS). Even if i create the Mutex with a new
name or with a NULL name i keep getting the error. what is the problem?
hRunMutex = CreateMutex(NULL, TRUE, NULL );
StringCbPrintf(junk,250,"hRunMutex: GetLastError %d\n", GetLastError() );
Leon
but now suddenly it is failing.
The problem is that the CreateMutex functions in the DLL are all failing due
to Error 183 (ERROR_ALREADY_EXISTS). Even if i create the Mutex with a new
name or with a NULL name i keep getting the error. what is the problem?
hRunMutex = CreateMutex(NULL, TRUE, NULL );
StringCbPrintf(junk,250,"hRunMutex: GetLastError %d\n", GetLastError() );
Leon