/src/Manos.IO/Libev/UnmanagedWatcherCallback.cs

http://github.com/jacksonh/manos · C# · 9 lines · 7 code · 2 blank · 0 comment · 0 complexity · 52a34e3e5ec1c0f3694726c700bb2f05 MD5 · raw file

  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Libev
  4. {
  5. [UnmanagedFunctionPointer (System.Runtime.InteropServices.CallingConvention.Cdecl)]
  6. internal delegate void UnmanagedWatcherCallback (IntPtr watcher, EventTypes revents);
  7. }