mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-11 15:24:02 +08:00
10 lines
291 B
C#
10 lines
291 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace MicaSetup.Natives;
|
|
|
|
public static class ShlwApi
|
|
{
|
|
[DllImport(Lib.ShlwApi, CharSet = CharSet.Unicode, SetLastError = true)]
|
|
public static extern int PathParseIconLocation([MarshalAs(UnmanagedType.LPWStr)] ref string pszIconFile);
|
|
}
|