mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
8 lines
229 B
C#
8 lines
229 B
C#
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IFileDialogCallbackAdapter<T> {
|
|
void Continue(T callback, int selectedAcceptFilter, string[] filePaths);
|
|
void Cancel(T callback);
|
|
void Dispose(T callback);
|
|
}
|
|
}
|