mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
23 lines
595 B
C#
23 lines
595 B
C#
namespace MicaSetup.Natives;
|
|
|
|
public static class Lib
|
|
{
|
|
public const string
|
|
User32 = "user32.dll",
|
|
Gdi32 = "gdi32.dll",
|
|
GdiPlus = "gdiplus.dll",
|
|
Kernel32 = "kernel32.dll",
|
|
Shell32 = "shell32.dll",
|
|
SHCore = "shcore.dll",
|
|
ShlwApi = "shlwapi.dll",
|
|
MsImg = "msimg32.dll",
|
|
NTdll = "ntdll.dll",
|
|
WinInet = "wininet.dll",
|
|
UxTheme = "uxtheme.dll",
|
|
DnsApi = "dnsapi.dll",
|
|
DwmApi = "dwmapi.dll",
|
|
PropSys = "propsys.dll",
|
|
OleAut32 = "oleaut32.dll",
|
|
Ole32 = "ole32.dll";
|
|
}
|