mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-28 00:15:47 +02:00
9 lines
203 B
C#
9 lines
203 B
C#
using System.Diagnostics;
|
|
|
|
namespace TweetLib.Core.Application{
|
|
public interface IAppLockHandler{
|
|
bool RestoreProcess(Process process);
|
|
bool CloseProcess(Process process);
|
|
}
|
|
}
|