2019-12-03 18:43:54 +01:00
|
|
|
|
namespace Unosquare.RaspberryIO.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-02-17 14:08:57 +01:00
|
|
|
|
}
|