13 lines
337 B
C#
13 lines
337 B
C#
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();
|
|
}
|