Files
DP44/DataPRO/IService/Interfaces/IService.cs
2026-04-17 14:55:32 -04:00

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);
}