mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-04 11:15:18 +08:00
20 lines
405 B
C#
20 lines
405 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
[ComImport,
|
|
Guid(ShellIIDGuid.IShellLibrary),
|
|
CoClass(typeof(ShellLibraryCoClass))]
|
|
internal interface INativeShellLibrary : IShellLibrary
|
|
{
|
|
}
|
|
|
|
[ComImport,
|
|
ClassInterface(ClassInterfaceType.None),
|
|
TypeLibType(TypeLibTypeFlags.FCanCreate),
|
|
Guid(ShellCLSIDGuid.ShellLibrary)]
|
|
internal class ShellLibraryCoClass
|
|
{
|
|
}
|