.NET CF二重起動防止用のMutexについて

Win用のアプリと同様にMutexを使おうとしたら.NET CF上のMutexは文字列を指定できないようになっていた!
P/Invokeして使うには以下のようなコードを使用する。

[DllImport("coredll.dll", EntryPoint = "CreateMutex", SetLastError = true)]
public static extern IntPtr CreateMutex(IntPtr lpMutexAttributes,bool InitialOwner,string MutexName);
[DllImport("coredll.dll", EntryPoint = "ReleaseMutex", SetLastError = true)]
public static extern bool ReleaseMutex(IntPtr hMutex);

MEMO(104397)