Files

12 lines
296 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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);
}