12 lines
296 B
C#
12 lines
296 B
C#
using System.Windows.Forms;
|
|
|
|
namespace DTS.DASLib.Service
|
|
{
|
|
/// <summary>
|
|
/// The delegate that we call with the callback data
|
|
/// </summary>
|
|
/// <param name="data">The actual callback data</param>
|
|
public delegate void ServiceCallback(ServiceCallbackData data);
|
|
|
|
}
|