Показать сообщение отдельно
Старый 26.07.2008, 11:38   #2
alcoSHoLiK
Дэвелопер
 
Регистрация: 17.01.2006
Сообщений: 1,512
Написано 78 полезных сообщений
(для 110 пользователей)
Ответ: Releasemutex Api ( hi! )

http://msdn.microsoft.com/en-us/library/ms685066.aspx
BOOL WINAPI ReleaseMutex(
__in HANDLE hMutex
);

Parameters

hMutex [in]

A handle to the mutex object. The CreateMutex or OpenMutex function returns this handle.
After calling CreateMutex you get a handle of the newly created mutex. Store it in a variable and pass as an argument to the ReleaseMutex function when you no longer need it.

Check MSDN for additional details.
(Offline)
 
Ответить с цитированием