8 lines
196 B
C#
8 lines
196 B
C#
namespace Notify.Ipc;
|
|
|
|
internal static class IpcConstants
|
|
{
|
|
// 保证 Host 单例的互斥量名(Local 级,按用户会话隔离)
|
|
public const string HostMutexName = "NotifyHost";
|
|
}
|