代码如下:
var
  MutexHandle:Thandle;
begin
  Mutexhandle := Windows.CreateMutex(nil, true, 'forhandle');在不同的工程中,即使都针对'forhandle',所得的mutexhandle 值为何不同?
Windows.CreateMutex 是用来作什么的?谢谢。