NativeDelegates.cs 267 B

1234567891011
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace PaintDotNet.SystemLayer
  4. {
  5. internal static class NativeDelegates
  6. {
  7. [return: MarshalAs(UnmanagedType.Bool)]
  8. public delegate bool EnumWindowsProc(IntPtr hwnd, IntPtr lParam);
  9. }
  10. }