WindowsLogicalComparer.cs 391 B

12345678910111213
  1. using System.Collections.Generic;
  2. using System.Runtime.InteropServices;
  3. namespace MeidoPhotoStudio.Plugin;
  4. public class WindowsLogicalComparer : IComparer<string>
  5. {
  6. [DllImport("shlwapi.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
  7. public static extern int StrCmpLogicalW(string x, string y);
  8. public int Compare(string x, string y) =>
  9. StrCmpLogicalW(x, y);
  10. }