WindowsLogicalComparer.cs 424 B

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