RaspberryIO_26/Unosquare.WiringPi/Native/Delegates.cs

12 lines
324 B
C#
Raw Normal View History

2019-12-06 21:09:52 +01:00
namespace Unosquare.WiringPi.Native {
/// <summary>
/// A delegate defining a callback for an Interrupt Service Routine.
/// </summary>
public delegate void InterruptServiceRoutineCallback();
/// <summary>
/// Defines the body of a thread worker.
/// </summary>
public delegate void ThreadWorker();
2019-12-04 18:57:18 +01:00
}