forked from ispysoftware/iSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Delegates.cs
43 lines (24 loc) · 1.29 KB
/
Delegates.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using iSpyApplication.Controls;
namespace iSpyApplication
{
public class Delegates
{
public delegate void NotificationEventHandler(object sender, NotificationType e);
public delegate void DisableDelegate(bool stopSource);
public delegate void EnableDelegate();
public delegate void AddAudioDelegate();
public delegate void FileListUpdatedEventHandler(object sender);
public delegate void RemoteCommandEventHandler(object sender, ThreadSafeCommand e);
public delegate void NewDataAvailable(object sender, NewDataAvailableArgs eventArgs);
public delegate void CloseDelegate();
public delegate void RunStorageManagementDelegate(bool abortIfRunning);
public delegate object AddObjectExternalDelegate(int sourceIndex, string url, int width, int height, string name);
public delegate void CameraCommandDelegate(CameraWindow target);
public delegate void ExternalCommandDelegate(string command);
public delegate void MicrophoneCommandDelegate(VolumeLevel target);
public delegate void InvokeMethod(string command);
public delegate void ErrorHandler(string message);
public delegate void RunCheckJoystick();
public delegate void SimpleDelegate();
}
}