×
日本語のページを検索
  • すべての言語
  • 日本語のページを検索
すべての結果
OpenMutex(既存の名前付きミューテックスオブジェクトのハンドルを取得する) · CloseHandle(オブジェクトのハンドルをクローズする) · CreateMutex(ミューテックス ...
hMutex := OpenMutex(MUTEX_ALL_ACCESS, False, MutexName); if (hMutex <> 0) then begin CloseHandle(hMutex); Exit; end; hMutex := CreateMutex(nil, False, MutexName);.
2015/12/15 · [delphi-users:4329] MUTEXが効かない? 649 ... to delphi... ... 2重起動の防止でWaitForSingleObjectを使うのは初めて見たのですが。 CreateMutex ...
2023/12/23 · ... OpenMutex(MUTEX_ALL_ACCESS, False, Mutexname); if hMutex = 0 then begin hMutex := CreateMutex(nil, False, Mutexname); Application.CreateForm ...
... OpenMutex(MUTEX_ALL_ACCESS, False, 'hPrevInst'); { CreateMutexの所と同じ名前にします } if hMutex <> 0 then begin { オープン出来るなら既に実行されている } ...
1999/09/19 · UniqueName : string; hMutex: THandle; initialization UniqueName := ExtractFileName(ParamStr(0)); hMutex := OpenMutex(MUTEX_ALL_ACCESS, false, ...
CreateMutexでミューテックスオブジェクトを作っておき、 · 後から同じ引数でCreateMutexを呼ぶと、 · エラーコードにERROR_ALREADY_EXISTSがセットされる。
2006/02/05 · ... OpenMutex(MUTEX_ALL_ACCESS, False, MutexName); if hMutex <> 0 then begin (*---- すでに Mutex が登録されている ----*) CloseHandle(hMutex); ...
hMutex := OpenMutex(MUTEX_ALL_ACCESS, False, PChar('MUTEX TEST')); MutexType := Format('Mutex Open(%d)', [hMutex]); if hMutex = 0 then begin hMutex ...
2001/09/01 · Windows APIの CreateMutex を使用して Mutex を作成します。すでに同じ名前を持つ Mutex が作成されていた場合、 CreateMutex は「ERROR_ALREADY_EXISTS」 ...