By the following code:
i'm trying to check if my app. is running.
MessageBox MB_OK "TEST"
CheckApp:
System::Call 'kernel32::OpenMutexA(i 0, i 0, t "{D50A79A4-CFD5-49a0-B94E-BBFA1D974616}") i .r1'
IntCmp $R1 0 +3
MessageBox MB_OK "App is running."
GoTo CheckApp
But I can't see any "App is running." MessageBoxes...
(App is running and it has mutex with such name. I can see "TEST" MessageBox.)
What I'm doing wrong?
Best regards...