Files
better-genshin-impact/Build/MicaSetup/Natives/Shell/Dialogs/KnownFolders/FolderProperties.cs

34 lines
1001 B
C#

using System;
using System.Runtime.InteropServices;
using System.Windows.Media.Imaging;
namespace MicaSetup.Shell.Dialogs;
[StructLayout(LayoutKind.Sequential)]
internal struct FolderProperties
{
internal string name;
internal FolderCategory category;
internal string canonicalName;
internal string description;
internal Guid parentId;
internal string parent;
internal string relativePath;
internal string parsingName;
internal string tooltipResourceId;
internal string tooltip;
internal string localizedName;
internal string localizedNameResourceId;
internal string iconResourceId;
internal BitmapSource icon;
internal DefinitionOptions definitionOptions;
internal System.IO.FileAttributes fileAttributes;
internal Guid folderTypeId;
internal string folderType;
internal Guid folderId;
internal string path;
internal bool pathExists;
internal RedirectionCapability redirection;
internal string security;
}