#pragma warning disable IL2050 // Correctness of COM interop cannot be guaranteed after trimming. Interfaces and interface members might be removed. using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices.ComTypes; using System.Security; using static Vanara.PInvoke.Ole32; using static Vanara.PInvoke.PropSys; namespace Vanara.PInvoke; public static partial class Shell32 { /// The bind interruptible public const uint BIND_INTERRUPTABLE = 0xFFFFFFFF; /// /// Introduced in Windows XP SP2. Specify this bind context to permit clients of the data source to override the hidden drive letter /// policy and enable access to the view objects for data sources on the drives that are blocked. /// Used with IShellFolder::BindToObject or IShellItem::BindToHandler. /// /// The system supports administrator-controlled policies that hide specified drive letters to block users from accessing those /// drives through Windows Explorer.When this policy is active, the result is that view objects and other handlers created with the /// IShellFolder::CreateViewObject method will fail when called on drives that are blocked by policy. /// /// public const string STR_AVOID_DRIVE_RESTRICTION_POLICY = "Avoid Drive Restriction Policy"; /// /// Introduced in Windows Vista. Specify this bind context to cause the IShellFolder::BindToObject method to use the object /// specified by the pbc parameter to create the target object; in this case, the object specified by the punk parameter in the /// IBindCtx::RegisterObjectParam call must implement the ICreateObject interface. /// Used with IShellFolder::BindToObject or IShellItem::BindToHandler. /// public const string STR_BIND_DELEGATE_CREATE_OBJECT = "Delegate Object Creation"; /// /// Introduced in Windows 7. Passed to IShellFolder::ParseDisplayName with an FOLDER_ENUM_MODE value to control the enumeration mode /// of the parsed item. The FOLDER_ENUM_MODE value is passed in the bind context through an object that implements IObjectWithFolderEnumMode. /// /// Items with different enumeration modes compare canonically(SHCIDS_CANONICALONLY) different because they enumerate different sets /// of items. /// /// /// If an item doesn't support the enumeration mode (because it isn't a folder or it doesn't provide the enumeration mode) then it /// is created in the default enumeration mode. /// /// public const string STR_BIND_FOLDER_ENUM_MODE = "Folder Enum Mode"; /// /// Introduced in Windows 7. Passed to IShellFolder::ParseDisplayName along with STR_FILE_SYS_BIND_DATA. This forces simple parsing /// while also probing for Desktop.ini files along the path from which to get a localized name string. This avoids probing for /// folders along the path, which, in a case of a folder that represents a server or a share, could take extensive time and /// resources. Desktop.ini files are cached in some locations, so it will be at least as efficient as probing for folders attributes /// and then probing for the Desktop.ini if that folder should turn ou tot be read-only. /// public const string STR_BIND_FOLDERS_READ_ONLY = "Folders As Read Only"; /// /// Introduced in Windows XP SP2. Specify this bind context to force a folder shortcut to resolve the link that points to its target. /// /// A folder shortcut is a folder item that points to another folder item in the same namespace, using a link(shortcut) to hold the /// IDList of the target.The link is resolved to track the target in case it is moved or renamed.For example, the Windows XP My /// Network Places folder and the Windows Vista Computer folder can contain folder shortcuts created with the Add Network Location /// wizard.To improve performance, the IShellFolder::BindToObject method does not resolve links to network folder by default. /// /// Used with IShellFolder::BindToObject or IShellItem::BindToHandler. /// public const string STR_BIND_FORCE_FOLDER_SHORTCUT_RESOLVE = "Force Folder Shortcut Resolve"; /// /// Introduced in Windows XP. Specify this bind context to prevent a call to the IShellFolder::ParseDisplayName method on the /// Desktop folder from treating relative paths as relative to the desktop; in such a case, parsing fails when this bind context is specified. /// public const string STR_DONT_PARSE_RELATIVE = "Don't Parse Relative"; /// /// Introduced in Windows Vista. Specify this bind context to instruct an IShellItem not to resolve the link target obtained when /// using the BHID_LinkTargetItem GUID in IShellItem::BindToHandler. /// public const string STR_DONT_RESOLVE_LINK = "Don't Resolve Link"; /// /// Introduced in Windows 8. Specifies a SHCONTF value to be passed to IShellFolder::EnumObjects when you call /// IShellItem::BindToHandler with BHID_EnumItems. /// public const string STR_ENUM_ITEMS_FLAGS = "SHCONTF"; /// /// Introduced in Windows XP. Specify this bind context to provide file metadata to the IShellFolder::ParseDisplayName method, which /// is used instead of attempting to retrieve the actual file metadata. The associated object must implement IFileSystemBindData and /// can optionally also implement IFileSystemBindData2. By default, the IShellFolder::ParseDisplayName method verifies that the file /// exists and uses the file's actual metadata to populate the ID list. /// public const string STR_FILE_SYS_BIND_DATA = "File System Bind Data"; /// /// Introduced in Windows 8.1. Specify this bind context to indicate that the data provided in the STR_FILE_SYS_FIND_DATA bind /// context should be used to create an ItemID list in the Windows 7 format. /// public const string STR_FILE_SYS_BIND_DATA_WIN7_FORMAT = "Win7FileSystemIdList"; /// /// Introduced in Windows 7. Specify this bind context when the handler is being retrieved on the same thread as the UI. Any /// memory-intensive activities such as those that involve disk or network access should be avoided. /// public const string STR_GET_ASYNC_HANDLER = "GetAsyncHandler"; /// /// Introduced in Windows Vista. Specify this bind context when requesting an IPropertySetStorage or IPropertyStore handler. This /// value is used with IShellFolder::BindToObject. See the GPS_BESTEFFORT flag for more information. /// public const string STR_GPS_BESTEFFORT = "GPS_BESTEFFORT"; /// /// Introduced in Windows Vista. Specify this bind context when requesting an IPropertySetStorage or IPropertyStore handler. This /// value is used with IShellFolder::BindToObject. See the GPS_DELAYCREATION flag for more information. /// public const string STR_GPS_DELAYCREATION = "GPS_DELAYCREATION"; /// /// Introduced in Windows Vista. Specify this bind context when requesting an IPropertySetStorage or IPropertyStore handler. This /// value is used with IShellFolder::BindToObject. See the GPS_FASTPROPERTIESONLY flag for more information. /// public const string STR_GPS_FASTPROPERTIESONLY = "GPS_FASTPROPERTIESONLY"; /// /// Introduced in Windows Vista. Specify this bind context when requesting an IPropertySetStorage or IPropertyStore handler. This /// value is used with IShellFolder::BindToObject. See the GPS_HANDLERPROPERTIESONLY flag for more information. /// public const string STR_GPS_HANDLERPROPERTIESONLY = "GPS_HANDLERPROPERTIESONLY"; /// /// Introduced in Windows 7. Specify this bind context when requesting an IPropertySetStorage or IPropertyStore handler. This value /// is used with IShellFolder::BindToObject. See the GPS_NO_OPLOCK flag for more information. /// public const string STR_GPS_NO_OPLOCK = "GPS_NO_OPLOCK"; /// /// Introduced in Windows Vista. Specify this bind context when requesting an IPropertySetStorage or IPropertyStore handler. This /// value is used with IShellFolder::BindToObject. See the GPS_OPENSLOWITEM flag for more information. /// public const string STR_GPS_OPENSLOWITEM = "GPS_OPENSLOWITEM"; /// /// Windows Vista only. Specify this bind context to cause a call to the IShellFolder::BindToObject method that requests the IFilter /// interface for a file system object to return a text filter if no other filter is available. This value is not defined as of /// Windows 7. /// public const string STR_IFILTER_FORCE_TEXT_FILTER_FALLBACK = "Always bind persistent handlers"; /// /// Windows Vista only. Specify this bind context to cause a call to the IShellFolder::BindToObject method that requests the IFilter /// interface for a file system object to not return a fallback filter if no registered filter could be found. /// public const string STR_IFILTER_LOAD_DEFINED_FILTER = "Only bind registered persistent handlers"; /// /// Introduced in Windows Vista. Specify this bind context to enable loading of the history from a stream for an internal navigation /// when the IPersistHistory::LoadHistory method is called. An internal navigation is a navigation within the same view. /// public const string STR_INTERNAL_NAVIGATE = "Internal Navigation"; /// /// Introduced in Windows 7. Specify this bind context with STR_PARSE_PREFER_FOLDER_BROWSING when the client wants the Internet /// Shell folder handlers to generate an IDList for any valid URL if a DAV-type folder cannot be created for that URL. The URL is /// not verified to exist; only its syntax is checked and that it has a registered protocol handler. /// public const string STR_INTERNETFOLDER_PARSE_ONLY_URLMON_BINDABLE = "Validate URL"; /// /// Introduced in Windows 7. Specify this bind context to instruct implementations of IShellFolder::ParseDisplayName and /// IPersistFolder3::InitializeEx to cache memory-intensive helper objects that can exist across instantiations of Shell items /// instead of recreating these objects each time that a Shell item is created. The associated object is another bind context /// object, initially empty. This should result in a separate bind context object, which is accessed through /// IBindCtx::GetObjectParam or IBindCtx::Register.ObjectParam. /// /// A caller must opt into this behavior by providing this bind context parameter when calling SHCreateItemFromParsingName. By doing /// so, you optimize the behavior of binding to multiple parsing names in succession.The lifetime of the bind context object should /// span multiple instances of Shell items and their individual bind contexts. /// /// public const string STR_ITEM_CACHE_CONTEXT = "ItemCacheContext"; /// /// Introduced in Windows Vista. Specify this bind context to allow invalid file name characters to appear in file names. By /// default, a call to the IShellFolder::ParseDisplayName method rejects characters that are illegal in file names. This bind /// context is meaningful only in conjunction with the STR_FILE_SYS_FIND_DATA bind context. /// public const string STR_NO_VALIDATE_FILENAME_CHARS = "NoValidateFilenameChars"; /// /// Introduced in Windows Vista. Specify this bind context to enable a call to the IShellFolder::ParseDisplayName method on the /// Desktop folder to parse URLs. If this bind context is specified, it overrides STR_PARSE_PREFER_WEB_BROWSING. /// public const string STR_PARSE_ALLOW_INTERNET_SHELL_FOLDERS = "Allow binding to Internet shell folder handlers and negate STR_PARSE_PREFER_WEB_BROWSING"; /// /// Introduced in Windows 7. Specify this bind context to instruct a data source's implementation of IShellFolder::ParseDisplayName /// to optimize the behavior of SHCreateItemFromParsingName. /// /// Normally, SHCreateItemFromParsingName performs two binding operations on the name to be parsed: one through and one to /// IShellFolder::ParseDisplayName and one to create the Shell item.When the STR_PARSE_AND_CREATE_ITEM bind context is supported, /// the second bind is avoided by creating the Shell item during the IShellFolder::ParseDisplayName bind and storing the Shell item /// through IParseAndCreateItem::SetItem.SHCreateItemFromParsingName then uses the stored Shell item rather than creating one. /// /// /// This parameter applies to the last element of the name that is parsed. For instance, in the name "C:\Folder1\File.txt, the data /// applies to File.txt. /// /// public const string STR_PARSE_AND_CREATE_ITEM = "ParseAndCreateItem"; /// /// Windows Vista only. Specify that, when parsing a URL, this bind context should not require the URL to exist before generating an /// IDList for it. Specify this bind context along with STR_PARSE_PREFER_FOLDER_BROWSING when the client desires that the Internet /// Shell folder handlers generate an IDList for the URL if a DAV folder cannot be created for the given URL. /// public const string STR_PARSE_DONT_REQUIRE_VALIDATED_URLS = "Do not require validated URLs"; /// /// Introduced in Windows 7. The IShellFolder::ParseDisplayName method sets this property to tell the caller that the returned /// IDList was bound to the ProgID specified with STR_PARSE_WITH_EXPLICIT_PROGID or the application specified with /// STR_PARSE_WITH_EXPLICIT_ASSOCAPP. When STR_PARSE_EXPLICIT_ASSOCIATION_SUCCESSFUL is absent, the ProgID or application was not /// bound into the IDList. /// public const string STR_PARSE_EXPLICIT_ASSOCIATION_SUCCESSFUL = "ExplicitAssociationSuccessful"; /// /// Introduced in Windows Vista. Specify this bind context to pass the original item that is being re-parsed when that item is /// stored as a IShellItem object that also implements the IParentAndItem interface. Before Windows 7 this value was not defined in /// a header file. It could be defined by the caller or passed as its string value of L"ParseOriginalItem". As of Windows 7, the /// value is defined in Shlobj.h. Note that this is a different header than the other STR constants. /// public const string STR_PARSE_PARTIAL_IDLIST = "ParseOriginalItem"; /// /// Introduced in Windows XP. Specify this bind context to enable a call to the IShellFolder::ParseDisplayName method on the Desktop /// folder to parse URLs as if they were folders. Use this bind context to bind to a WebDAV server. /// public const string STR_PARSE_PREFER_FOLDER_BROWSING = "Parse Prefer Folder Browsing"; /// /// Introduced in Windows Vista. Specify this bind context to prevent a call to the IShellFolder::ParseDisplayName method on the /// Desktop folder form parsing URLs. This bind context can be overridden by STR_PARSE_ALLOW_INTERNET_SHELL_FOLDERS. /// public const string STR_PARSE_PREFER_WEB_BROWSING = "Do not bind to Internet shell folder handlers"; /// /// Introduced in Windows Vista. Specify this bind context to override the default property store used by the /// IShellFolder::ParseDisplayName method, and use the property store specified as the bind parameter instead. Applies to delegate folders. /// public const string STR_PARSE_PROPERTYSTORE = "DelegateNamedProperties"; /// /// Introduced in Windows XP SP2. Specify this bind context to enable a call to the IShellFolder::ParseDisplayName method on the /// Desktop folder to use the "shell:" prefix notation to access files. /// public const string STR_PARSE_SHELL_PROTOCOL_TO_FILE_OBJECTS = "Parse Shell Protocol To File Objects"; /// /// Introduced in Windows Vista. Specify this bind context to cause a call to the IShellFolder::ParseDisplayName method to display /// the network diagnostics dialog if the parsing of a network path fails. /// public const string STR_PARSE_SHOW_NET_DIAGNOSTICS_UI = "Show network diagnostics UI"; /// /// Introduced in Windows Vista. Specify this bind context to cause a call to the IShellFolder::ParseDisplayName method to skip /// checking the network shares cache and contact the network server directly. Information about network shares is cached to improve /// performance, and IShellFolder::ParseDisplayName checks this cache by default. /// public const string STR_PARSE_SKIP_NET_CACHE = "Skip Net Resource Cache"; /// /// Introduced in Windows XP. Specify this bind context to pass parsed properties to the IShellFolder::ParseDisplayName method for a /// delegate namespace. The namespace can use the passed properties instead of attempting to parse the name itself. /// public const string STR_PARSE_TRANSLATE_ALIASES = "Parse Translate Aliases"; /// /// Introduced in Windows 7. Specify this property to cause a call to the IShellFolder::ParseDisplayName method to return an IDList /// bound to the file type association handler for the application. /// public const string STR_PARSE_WITH_EXPLICIT_ASSOCAPP = "ExplicitAssociationApp"; /// /// Introduced in Windows 7. Specify this property to cause a call to the IShellFolder::ParseDisplayName method to return an IDList /// bound to the file association handler of the provided ProgID. /// public const string STR_PARSE_WITH_EXPLICIT_PROGID = "ExplicitProgid"; /// /// Windows Vista only. A parsing bind context that is used to pass a set of properties and the item's name when calling /// IShellFolder::ParseDisplayName. The object in the bind context implements IPropertyStore and is retrieved by calling IBindCtx::GetObjectParam. /// /// DBFolder is a Shell data source that represents items in search results and query-based views.DBFolder retrieves these items by /// querying the Windows Search system.Items in the search results are identified through a protocol scheme, for example "file:" or /// "mapi:". DBFolder provides the behavior for these items by delegating to Shell data sources that are created for these /// protocols. See Developing Protocol Handler Add-ins for more information. /// /// /// When DBFolder delegates its parsing operation to the Shell data sources that support Windows Search protocols, this bind context /// provides access to values that were returned in the query result for that item. This includes the following: /// /// /// /// System.ItemType (PKEY_ItemType) /// /// /// System.ParsingPath (PKEY_ParsingPath) /// /// /// System.ItemPathDisplay (PKEY_ItemPathDisplay) /// /// /// System.ItemNameDisplay (PKEY_ItemNameDisplay) /// /// /// /// This bind context can also be used to parse a DBFolder item if a client has a set of properties that define the item.In this /// case an empty name should be passed to IShellFolder::ParseDisplayName. /// /// /// Before Windows 7, this value was not defined in a header file.It could be defined by the caller or passed as its string value: /// L"ParseWithProperties". As of Windows 7, the value is defined in Shlobj.h.Note that this is a different header than where the /// other STR constants are defined. /// /// public const string STR_PARSE_WITH_PROPERTIES = "ParseWithProperties"; /// /// Introduced in Windows 8. Specify this bind context to indicate that the bind context parameter is a property bag (IPropertyBag) /// used to pass VARIANT values in the bind context. See the Remarks section for further details. /// public const string STR_PROPERTYBAG_PARAM = "SHBindCtxPropertyBag"; /// The string referrer identifier public const string STR_REFERRER_IDENTIFIER = "Referrer Identifier"; /// /// Introduced in Windows XP. Specify this bind context to cause calls to the IShellFolder::ParseDisplayName or /// IShellFolder::BindToObject methods to ignore a particular Shell namespace extension when parsing or binding. The CLSID of the /// namespace to ignore is provided by the IPersist::GetClassID method of the bind parameter. /// public const string STR_SKIP_BINDING_CLSID = "Skip Binding CLSID"; /// The string tab reuse identifier public const string STR_TAB_REUSE_IDENTIFIER = "Tab Reuse Identifier"; /// Not used. public const string STR_TRACK_CLSID = "Track the CLSID"; private delegate HRESULT IidFunc(in Guid riid, out object? ppv); /// Values that specify from which category the list of destinations should be retrieved. [PInvokeData("Shobjidl.h", MSDNShortId = "dd378410")] public enum APPDOCLISTTYPE { /// The Recent category, which lists those items most recently accessed. RECENT, /// The Frequent category, which lists the items that have been accessed the greatest number of times. FREQUENT } /// The type of media in a given drive. [PInvokeData("shobjidl.h", MSDNShortId = "ebc826a2-d7ea-413a-836b-c7e51f13692a")] [Flags] public enum ARCONTENT { /// Use the Autorun.inf file. This is the traditional AutoRun behavior. ARCONTENT_AUTORUNINF = 0x00000002, /// AutoRun audio CDs. ARCONTENT_AUDIOCD = 0x00000004, /// AutoRun DVDs. ARCONTENT_DVDMOVIE = 0x00000008, /// AutoPlay blank CD-Rs and CD-RWs. ARCONTENT_BLANKCD = 0x00000010, /// AutoPlay blank DVD-Rs and DVD-RAMs. ARCONTENT_BLANKDVD = 0x00000020, /// AutoRun if the media is formatted and the content does not fall under a type covered by one of the other flags. ARCONTENT_UNKNOWNCONTENT = 0x00000040, /// AutoPlay if the content consists of file types defined as pictures, such as .bmp and .jpg files. ARCONTENT_AUTOPLAYPIX = 0x00000080, /// AutoPlay if the content consists of file types defined as music, such as MP3 files. ARCONTENT_AUTOPLAYMUSIC = 0x00000100, /// AutoPlay if the content consists of file types defined as video files. ARCONTENT_AUTOPLAYVIDEO = 0x00000200, /// Introduced in Windows Vista. AutoPlay video CDs (VCDs). ARCONTENT_VCD = 0x00000400, /// Introduced in Windows Vista. AutoPlay Super Video CD (SVCD) media. ARCONTENT_SVCD = 0x00000800, /// Introduced in Windows Vista. AutoPlay DVD-Audio media. ARCONTENT_DVDAUDIO = 0x00001000, /// /// AutoPlay blank recordable high definition DVD media in the Blu-ray Disc™ format (BD-R or BD-RW). Note: Prior to Windows 7, /// this value was defined to specify non-recordable media in the HD DVD format. /// ARCONTENT_BLANKBD = 0x00002000, /// Introduced in Windows Vista. AutoPlay high definition DVD media in the Blu-ray Disc™ format. ARCONTENT_BLURAY = 0x00004000, /// Introduced in Windows 8. ARCONTENT_CAMERASTORAGE = 0x00008000, /// Introduced in Windows 8. ARCONTENT_CUSTOMEVENT = 0x00010000, /// Introduced in Windows Vista. AutoPlay empty but formatted media. ARCONTENT_NONE = 0x00000000, /// /// Introduced in Windows Vista. A mask that denotes valid ARCONTENT flag values for media types. This mask does not include /// ARCONTENT_PHASE values. /// ARCONTENT_MASK = 0x0001FFFE, /// /// Introduced in Windows Vista. AutoPlay is searching the media. The phase of the search (presniff, sniffing, or final) is unknown. /// ARCONTENT_PHASE_UNKNOWN = 0x00000000, /// /// Introduced in Windows Vista. The contents of the media are known before the media is searched, due to the media type; for /// instance, audio CDs and DVD movies. /// ARCONTENT_PHASE_PRESNIFF = 0x10000000, /// /// Introduced in Windows Vista. AutoPlay is currently searching the media. Any results reported during this phase should be /// considered a partial list as more content types might still be found. /// ARCONTENT_PHASE_SNIFFING = 0x20000000, /// Introduced in Windows Vista. AutoPlay has finished searching the media. Results reported are final. ARCONTENT_PHASE_FINAL = 0x40000000, /// Introduced in Windows Vista. A mask that denotes valid ARCONTENT_PHASE values. ARCONTENT_PHASE_MASK = 0x70000000, } /// Specifies the enumeration handler filter applied to the full list of handlers in SHAssocEnumHandlers. [PInvokeData("shobjidl_core.h", MSDNShortId = "83db466b-e00c-4015-879f-c5c222f45b8c")] public enum ASSOC_FILTER { /// Return all handlers. ASSOC_FILTER_NONE = 0x0, /// /// Return only recommended handlers. A handler sets its recommended status in the registry when it is installed. An initial /// status of non-recommended can later be promoted to recommended as a result of user action. /// ASSOC_FILTER_RECOMMENDED = 0x1, } /// /// /// Specifies the source of the default association for a file name extension. Used by methods of the /// IApplicationAssociationRegistration interface. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/ne-shobjidl_core-associationlevel typedef enum // ASSOCIATIONLEVEL { AL_MACHINE , AL_EFFECTIVE , AL_USER } ; [PInvokeData("shobjidl_core.h", MSDNShortId = "846ce9f4-092a-420d-be73-0951efc4368f")] public enum ASSOCIATIONLEVEL { /// The machine-level default application association. AL_MACHINE, /// The effective default for the current user. This value should be used by most applications. AL_EFFECTIVE, /// /// The per-user default application association. If this value is used and no per-user default is declared, the calling method /// fails with a value of . /// AL_USER, } /// /// Specifies the type of association for an application. Used by methods of the IApplicationAssociationRegistration interface. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/ne-shobjidl_core-associationtype [PInvokeData("shobjidl_core.h")] public enum ASSOCIATIONTYPE { /// Indicates a file name extension, such as .htm or .mp3. AT_FILEEXTENSION, /// Indicates a protocol, such as http or mailto. AT_URLPROTOCOL, /// /// Indicates the owner of the startmenu client for a mail or Internet hyperlink. As of Windows 7, this value is used only for /// the MAPI sendmail client. /// AT_STARTMENUCLIENT, /// Indicates the MIME type, such as audio/mp3. AT_MIMETYPE, } /// /// Values used by the SHGetItemFromDataObject function to specify options concerning the processing of the source object. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/ne-shobjidl_core-dataobj_get_item_flags typedef enum // DATAOBJ_GET_ITEM_FLAGS { DOGIF_DEFAULT , DOGIF_TRAVERSE_LINK , DOGIF_NO_HDROP , DOGIF_NO_URL , DOGIF_ONLY_IF_ONE } ; [PInvokeData("shobjidl_core.h", MSDNShortId = "7a5ee490-cf30-452a-ade2-22d875ce0358")] [Flags] public enum DATAOBJ_GET_ITEM_FLAGS { /// No special options. DOGIF_DEFAULT = 0x0000, /// If the source object is a link, base the IShellItem on the link's target rather than the link file itself. DOGIF_TRAVERSE_LINK = 0x0001, /// /// If the source data object does not contain data in the CFSTR_SHELLIDLIST format, which identifies the object through an /// IDList, do not revert to the CF_HDROP format, which uses a file path, as an alternative in the transfer. /// DOGIF_NO_HDROP = 0x0002, /// /// If the source data object does not contain data in the CFSTR_SHELLIDLIST format, which identifies the object through an /// IDList, do not revert to the CFSTR_INETURL clipboard format, which uses a URL, as an alternative in the transfer. /// DOGIF_NO_URL = 0x0004, /// If the source object is an array of items, use it only if the array contains just one item. DOGIF_ONLY_IF_ONE = 0x0008, } /// Constants used by IFileIsInUse::GetUsage to indicate how a file in use is being used. /// /// The interpretation of "playing" or "editing" is left to the application's implementation of IFileIsInUse. Generally, "playing" /// would refer to a media file while "editing" can refer to any file being altered in an application. However, the application /// itself best knows how to map these terms to its actions. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/ne-shobjidl_core-file_usage_type typedef enum FILE_USAGE_TYPE // { FUT_PLAYING, FUT_EDITING, FUT_GENERIC } ; [PInvokeData("shobjidl_core.h", MSDNShortId = "32b0e148-499a-401d-837c-8cea74cf9cac")] public enum FILE_USAGE_TYPE { /// The file is being played by the process that has it open. FUT_PLAYING, /// The file is being edited by the process that has it open. FUT_EDITING, /// /// The file is open in the process for an unspecified action or an action that does not readily fit into the other two categories. /// FUT_GENERIC, } /// One of the following values that indicate which known category to add to the list [PInvokeData("Shobjidl.h", MSDNShortId = "dd378397")] public enum KNOWNDESTCATEGORY { /// Add the Frequent category. KDC_FREQUENT = 1, /// Add the Recent category. KDC_RECENT = 2 } /// The capability flags used by . [PInvokeData("shobjidl_core.h")] [Flags] public enum OF_CAP { /// The UI can switch to the top-level window of the application that is using the file. OF_CAP_CANSWITCHTO = 0x0001, /// The file can be closed. OF_CAP_CANCLOSE = 0x0002 } /// /// Specifies the states that a placeholder file can have. Retrieve this value through the System.FilePlaceholderStatus /// (PKEY_FilePlaceholderStatus) property. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/ne-shobjidl_core-placeholder_states typedef enum // PLACEHOLDER_STATES { PS_NONE, PS_MARKED_FOR_OFFLINE_AVAILABILITY, PS_FULL_PRIMARY_STREAM_AVAILABLE, PS_CREATE_FILE_ACCESSIBLE, // PS_CLOUDFILE_PLACEHOLDER, PS_DEFAULT, PS_ALL } ; [PInvokeData("shobjidl_core.h", MSDNShortId = "BF4E0A9F-CD78-4D29-AD0C-7DF14AE88447")] [Flags] public enum PLACEHOLDER_STATES { /// None of the other states apply at this time. PS_NONE = 0, /// May already be or eventually will be available offline. PS_MARKED_FOR_OFFLINE_AVAILABILITY = 0x1, /// The primary stream has been made fully available. PS_FULL_PRIMARY_STREAM_AVAILABLE = 0x2, /// /// The file is accessible through a call to the CreateFile function, without requesting the opening of reparse points. /// PS_CREATE_FILE_ACCESSIBLE = 0x4, /// PS_CLOUDFILE_PLACEHOLDER = 0x8, /// PS_DEFAULT = PS_MARKED_FOR_OFFLINE_AVAILABILITY | PS_FULL_PRIMARY_STREAM_AVAILABLE | PS_CREATE_FILE_ACCESSIBLE, /// A bitmask value for all valid PLACEHOLDER_STATES flags. PS_ALL = PS_MARKED_FOR_OFFLINE_AVAILABILITY | PS_FULL_PRIMARY_STREAM_AVAILABLE | PS_CREATE_FILE_ACCESSIBLE | PS_CLOUDFILE_PLACEHOLDER, } /// /// Flags that specify the type of path information to retrieve. This parameter can be a combination of the following values. /// [PInvokeData("Shobjidl.h", MSDNShortId = "bb774944")] [Flags] public enum SLGP { /// Retrieves the standard short (8.3 format) file name. SLGP_SHORTPATH = 1, /// Unsupported; do not use. SLGP_UNCPRIORITY = 2, /// /// Retrieves the raw path name. A raw path is something that might not exist and may include environment variables that need to /// be expanded. /// SLGP_RAWPATH = 4, /// /// Windows Vista and later. Retrieves the path, if possible, of the shortcut's target relative to the path set by a previous /// call to IShellLink::SetRelativePath. /// SLGP_RELATIVEPRIORITY = 8 } /// /// Used with the IFolderView::Items, IFolderView::ItemCount, and IShellView::GetItemObject methods to restrict or control the items /// in their collections. /// public enum SVGIO : uint { /// /// Refers to the background of the view. It is used with IID_IContextMenu to get a shortcut menu for the view background and /// with IID_IDispatch to get a dispatch interface that represents the ShellFolderView object for the view. /// SVGIO_BACKGROUND = 0, /// /// Refers to the currently selected items. Used with IID_IDataObject to retrieve a data object that represents the selected items. /// SVGIO_SELECTION = 0x1, /// Used in the same way as SVGIO_SELECTION but refers to all items in the view. SVGIO_ALLVIEW = 0x2, /// /// Used in the same way as SVGIO_SELECTION but refers to checked items in views where checked mode is supported. For more /// details on checked mode, see FOLDERFLAGS. /// SVGIO_CHECKED = 0x3, /// Masks all bits but those corresponding to the _SVGIO flags. SVGIO_TYPE_MASK = 0xf, /// /// Returns the items in the order they appear in the view. If this flag is not set, the selected item will be listed first. /// SVGIO_FLAG_VIEWORDER = 0x80000000, } /// Specifies possible status values used in the System.SyncTransferStatus property. // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/ne-shobjidl_core-sync_transfer_status typedef enum // SYNC_TRANSFER_STATUS { STS_NONE, STS_NEEDSUPLOAD, STS_NEEDSDOWNLOAD, STS_TRANSFERRING, STS_PAUSED, STS_HASERROR, // STS_FETCHING_METADATA, STS_USER_REQUESTED_REFRESH, STS_HASWARNING, STS_EXCLUDED, STS_INCOMPLETE, STS_PLACEHOLDER_IFEMPTY } ; [PInvokeData("shobjidl_core.h", MSDNShortId = "B772BF05-0E82-48E6-9A0B-A3C53FBC5F60")] [Flags] public enum SYNC_TRANSFER_STATUS : uint { /// There is no current sync activity. STS_NONE = 0, /// The file is pending upload. STS_NEEDSUPLOAD = 0x1, /// The file is pending download. STS_NEEDSDOWNLOAD = 0x2, /// The file is currently being uploaded or downloaded. STS_TRANSFERRING = 0x4, /// The current transfer is paused. STS_PAUSED = 0x8, /// An error was encountered during the last sync operation. STS_HASERROR = 0x10, /// The sync engine is retrieving metadata from the cloud. STS_FETCHING_METADATA = 0x20, /// STS_USER_REQUESTED_REFRESH = 0x40, /// STS_HASWARNING = 0x80, /// STS_EXCLUDED = 0x100, /// STS_INCOMPLETE = 0x200, /// STS_PLACEHOLDER_IFEMPTY = 0x400 } /// /// /// Exposes methods that query and set default applications for specific file Association Type, and protocols at a specific /// Association Level. /// /// Note As of Windows 8, the only functionality of this interface that is supported is QueryCurrentDefault. /// /// /// /// Because IApplicationAssociationRegistration is only supported for Windows Vista and Windows 7, applications that support /// earlier operating systems must use their preexisting code in relation to defaults when running under those operating systems. /// Those applications should include a check for the operating system version to account for this. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nn-shobjidl_core-iapplicationassociationregistration [PInvokeData("shobjidl_core.h", MSDNShortId = "015a3be4-2e74-4a2b-8c02-54dcbf0ecacd")] [ComImport, Guid("4e530b0a-e611-4c77-a3ac-9031d022281b"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown), CoClass(typeof(ApplicationAssociationRegistration))] public interface IApplicationAssociationRegistration { /// /// Determines the default application for a given association type. This is the default application launched by ShellExecute /// for that type. Not intended for use in Windows 8. /// /// /// Type: LPCWSTR /// /// A pointer to a null-terminated, Unicode string that contains the file name extension or protocol, such as .mp3 or http. /// /// /// /// Type: ASSOCIATIONTYPE /// One of the ASSOCIATIONTYPE enumeration values that specifies the type of association, such as extension or MIME type. /// /// /// Type: ASSOCIATIONLEVEL /// /// One of the ASSOCIATIONLEVEL enumeration values that specifies the level of association, such as per-user or machine. This is /// typically AL_EFFECTIVE. /// /// /// /// Type: LPWSTR* /// When this method returns, contains the address of a pointer to the ProgID that identifies the current default association. /// Note It is the responsibility of the calling application to release the string through CoTaskMemFree. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// The string produced is typically a ProgID matching one of the ProgIDs associated with a registered application, but there /// are a few exceptions: If the string returned is a machine default protocol, it is a legacy string indicating a command line /// to a .exe handler instead of a ProgID. Similarly, if returning a machine default MIME type, it returns a legacy class /// identifier (CLSID) string instead of a ProgID. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-iapplicationassociationregistration-querycurrentdefault // HRESULT QueryCurrentDefault( LPCWSTR pszQuery, ASSOCIATIONTYPE atQueryType, ASSOCIATIONLEVEL alQueryLevel, LPWSTR // *ppszAssociation ); void QueryCurrentDefault([MarshalAs(UnmanagedType.LPWStr)] string pszQuery, ASSOCIATIONTYPE atQueryType, ASSOCIATIONLEVEL alQueryLevel, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(CoTaskMemStringMarshaler))] out string ppszAssociation); /// /// Determines whether an application owns the registered default association for a given application level and type. Not /// intended for use in Windows 8. /// /// /// Type: LPCWSTR /// /// A pointer to a null-terminated Unicode string that contains the file name extension or protocol of the application, /// such as .mp3 or http. /// /// /// /// Type: ASSOCIATIONTYPE /// /// One of the ASSOCIATIONTYPE enumeration values that specifies the type of the application named in pszQuery, such as file /// name extension or MIME type. /// /// /// /// Type: ASSOCIATIONLEVEL /// /// One of the ASSOCIATIONLEVEL enumeration values that specifies the level of association, such as per-user or machine. This is /// typically AL_EFFECTIVE. /// /// /// /// Type: LPCWSTR /// A pointer to a null-terminated Unicode string that specifies the registered name of the application. /// /// /// Type: BOOL* /// When this method returns, contains TRUE if the application is the default; or FALSE otherwise. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-iapplicationassociationregistration-queryappisdefault // HRESULT QueryAppIsDefault( LPCWSTR pszQuery, ASSOCIATIONTYPE atQueryType, ASSOCIATIONLEVEL alQueryLevel, LPCWSTR // pszAppRegistryName, BOOL *pfDefault ); void QueryAppIsDefault([MarshalAs(UnmanagedType.LPWStr)] string pszQuery, ASSOCIATIONTYPE atQueryType, ASSOCIATIONLEVEL alQueryLevel, [MarshalAs(UnmanagedType.LPWStr)] string pszAppRegistryName, [MarshalAs(UnmanagedType.Bool)] out bool pfDefault); /// /// Determines whether an application owns all of the registered default associations for a given application level. Not /// intended for use in Windows 8. /// /// /// Type: ASSOCIATIONLEVEL /// /// One of the ASSOCIATIONLEVEL enumeration values that specifies the level of association, such as per-user or machine. This is /// typically AL_EFFECTIVE. /// /// /// /// Type: LPCWSTR /// A pointer to a null-terminated Unicode string that specifies the registered name of the application. /// /// /// Type: BOOL* /// /// When this method returns, contains TRUE if the application is the default for all association types at the specified /// ASSOCIATIONLEVEL; or FALSE otherwise. /// /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-iapplicationassociationregistration-queryappisdefaultall // HRESULT QueryAppIsDefaultAll( ASSOCIATIONLEVEL alQueryLevel, LPCWSTR pszAppRegistryName, BOOL *pfDefault ); void QueryAppIsDefaultAll(ASSOCIATIONLEVEL alQueryLevel, [MarshalAs(UnmanagedType.LPWStr)] string pszAppRegistryName, [MarshalAs(UnmanagedType.Bool)] out bool pfDefault); /// /// Sets an application as the default for a given extension or protocol, provided that the application's publisher matches the /// current default's. For more information, see Default Programs. Not intended for use in Windows 8. /// /// /// /// /// Type: ASSOCIATIONTYPE /// /// One of the ASSOCIATIONTYPE enumeration values that specifies the type of the application named in extOrUriScheme, such as /// file name extension or MIME type. /// /// /// /// Type: HRESULT /// /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. In particular, if the /// application's publisher doesn't match the default's, this method returns E_ACCESSDENIED. /// /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-iapplicationassociationregistration-setappasdefault // HRESULT SetAppAsDefault( LPCWSTR pszAppRegistryName, LPCWSTR pszSet, ASSOCIATIONTYPE atSetType ); void SetAppAsDefault([MarshalAs(UnmanagedType.LPWStr)] string pszAppRegistryName, [MarshalAs(UnmanagedType.LPWStr)] string pszSet, ASSOCIATIONTYPE atSetType); /// /// Sets an application as the default for all of the registered associations of any type for that application. Not intended for /// use in Windows 8. /// /// /// Type: LPCWSTR /// A pointer to a null-terminated Unicode string that specifies the registered name of the application. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-iapplicationassociationregistration-setappasdefaultall // HRESULT SetAppAsDefaultAll( LPCWSTR pszAppRegistryName ); void SetAppAsDefaultAll([MarshalAs(UnmanagedType.LPWStr)] string pszAppRegistryName); /// /// Removes all per-user associations for the current user. This results in a reversion to machine defaults, if they exist. Not /// intended for use in Windows 8. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-iapplicationassociationregistration-clearuserassociations // HRESULT ClearUserAssociations(); void ClearUserAssociations(); } /// /// Exposes methods that allow an application to remove one or all destinations from the Recent or Frequent categories in a Jump List. /// [SuppressUnmanagedCodeSecurity] [ComImport, Guid("12337d35-94c6-48a0-bce7-6a9c69d4d600"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown), CoClass(typeof(ApplicationDestinations))] [PInvokeData("Shobjidl.h", MSDNShortId = "dd378413")] public interface IApplicationDestinations { /// /// Specifies a unique AppUserModelID for the application from whose taskbar button's Jump List the methods of this interface /// will remove destinations. This method is optional. /// /// /// Pointer to the AppUserModelID of the process whose taskbar button representation receives the Jump List. /// void SetAppID([MarshalAs(UnmanagedType.LPWStr)] string pszAppID); /// Removes a single destination from the Recent and Frequent categories in a Jump List. /// A pointer to the IShellItem or IShellLink that represents the destination to remove. void RemoveDestination([MarshalAs(UnmanagedType.IUnknown)] object punk); /// Clears all destination entries from the Recent and Frequent categories in an application's Jump List. void RemoveAllDestinations(); } /// Allows an application to retrieve the most recent and frequent documents opened in that app, as reported via SHAddToRecentDocs /// Critical: Suppresses unmanaged code security. [SuppressUnmanagedCodeSecurity] [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("3c594f9f-9f30-47a1-979a-c9e83d3d0a06"), CoClass(typeof(ApplicationDocumentLists))] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762502")] public interface IApplicationDocumentLists { /// /// Set the App User Model ID for the application retrieving this list. If an AppID is not provided via this method, the system /// will use a heuristically determined ID. This method must be called before GetList. /// /// App Id. void SetAppID([MarshalAs(UnmanagedType.LPWStr)] string pszAppID); /// /// Retrieve an IEnumObjects or IObjectArray for IShellItems and/or IShellLinks. Items may appear in both the frequent and /// recent lists. /// /// Which of the known list types to retrieve /// The number of items desired. /// The interface Id that the return value should be queried for. /// A COM object based on the IID passed for the riid parameter. [return: MarshalAs(UnmanagedType.IUnknown)] object GetList(APPDOCLISTTYPE listtype, uint cItemsDesired, in Guid riid); } /// Exposes methods to set default icons associated with an object. [ComImport, Guid("41ded17d-d6b3-4261-997d-88c60e4b1d58"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] [PInvokeData("Shobjidl.h")] public interface IDefaultExtractIconInit { /// Sets GIL_XXX flags. See GetIconLocation /// Specifies return flags to get icon location. void SetFlags(GetIconLocationFlags uFlags); /// Sets the registry key from which to load the "DefaultIcon" value. /// A handle to the registry key. void SetKey(HKEY hkey); /// Sets the normal icon. /// /// A pointer to a buffer that contains the full icon path, including the file name and extension, as a Unicode string. This /// pointer can be NULL. /// /// A Shell icon ID. void SetNormalIcon([In, Optional, MarshalAs(UnmanagedType.LPWStr)] string? pszFile, int iIcon); /// Sets the icon that allows containers to specify an "open" look. /// /// A pointer to a buffer that contains the full icon path, including the file name and extension, as a Unicode string. This /// pointer can be NULL. /// /// Shell icon ID. void SetOpenIcon([In, Optional, MarshalAs(UnmanagedType.LPWStr)] string? pszFile, int iIcon); /// Sets the icon for a shortcut to the object. /// /// A pointer to a buffer that contains the full icon path, including the file name and extension, as a Unicode string. This /// pointer can be NULL. /// /// Shell icon ID. void SetShortcutIcon([In, Optional, MarshalAs(UnmanagedType.LPWStr)] string? pszFile, int iIcon); /// Sets the default icon. /// /// A pointer to a buffer that contains the full icon path, including the file name and extension, as a Unicode string. This /// pointer can be NULL. /// /// The Shell icon ID. void SetDefaultIcon([In, Optional, MarshalAs(UnmanagedType.LPWStr)] string? pszFile, int iIcon); } /// /// Exposes a standard set of methods used to enumerate the pointers to item identifier lists (PIDLs) of the items in a Shell /// folder. When a folder's IShellFolder::EnumObjects method is called, it creates an enumeration object and passes a pointer to the /// object's IEnumIDList interface back to the calling application. /// [SuppressUnmanagedCodeSecurity] [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("000214F2-0000-0000-C000-000000000046")] [PInvokeData("Shobjidl.h", MSDNShortId = "bb761982")] public interface IEnumIDList : Vanara.Collections.ICOMEnum { /// /// Retrieves the specified number of item identifiers in the enumeration sequence and advances the current position by the /// number of items retrieved. /// /// The number of elements in the array referenced by the rgelt parameter. /// /// The address of a pointer to an array of ITEMIDLIST pointers that receive the item identifiers. The implementation must /// allocate these item identifiers using CoTaskMemAlloc. The calling application is responsible for freeing the item /// identifiers using CoTaskMemFree. /// /// /// A pointer to a value that receives a count of the item identifiers actually returned in rgelt. The count can be smaller than /// the value specified in the celt parameter. This parameter can be NULL on entry only if celt = 1, because in that case the /// method can only retrieve one (S_OK) or zero (S_FALSE) items. /// /// /// Returns S_OK if the method successfully retrieved the requested celt elements. This method only returns S_OK if the full /// count of requested items are successfully retrieved. S_FALSE indicates that more items were requested than remained in the /// enumeration.The value pointed to by the pceltFetched parameter specifies the actual number of items retrieved. Note that the /// value will be 0 if there are no more items to retrieve. /// [PreserveSig] HRESULT Next(uint celt, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] IntPtr[] rgelt, out uint pceltFetched); /// Skips the specified number of elements in the enumeration sequence. /// The number of item identifiers to skip. void Skip(uint celt); /// Returns to the beginning of the enumeration sequence. void Reset(); /// Creates a new item enumeration object with the same contents and state as the current one. /// /// The address of a pointer to the new enumeration object. The calling application must eventually free the new object by /// calling its Release member function. /// [return: MarshalAs(UnmanagedType.Interface)] IEnumIDList Clone(); } /// /// Exposes a standard set of methods that enumerate the pointers to item identifier lists (PIDLs) of the items in a Shell folder. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nn-shobjidl_core-ienumfullidlist [PInvokeData("shobjidl_core.h", MSDNShortId = "NN:shobjidl_core.IEnumFullIDList")] [ComImport, Guid("d0191542-7954-4908-bc06-b2360bbe45ba"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface IEnumFullIDList : Vanara.Collections.ICOMEnum { /// Retrieves a specified number of IDLIST_ABSOLUTE items. /// /// Type: ULONG /// The number of items referenced in the array referenced by the rgelt parameter. /// /// /// Type: PIDLIST_ABSOLUTE* /// /// On success, contains a PIDL array. The implementation must allocate these item identifiers using CoTaskMemAlloc. The calling /// application is responsible for freeing the item identifiers using CoTaskMemFree. /// /// /// /// Type: ULONG* /// /// On success, contains a pointer to a value that receives a count of the absolute item identifiers actually returned in rgelt. /// The count can be smaller than the value specified in the celt parameter. This parameter can be NULL on entry only if /// celt is 1, because in that case the method can only retrieve one (S_OK) or zero (S_FALSE) items. /// /// /// /// Type: HRESULT /// /// Returns S_OK if the method successfully retrieved the requested celt elements. This method only returns S_OK if the full /// count of requested items are successfully retrieved. /// /// /// S_FALSE indicates that more items were requested than remained in the enumeration. The value pointed to by the pceltFetched /// parameter specifies the actual number of items retrieved. Note that the value will be 0 if there are no more items to retrieve. /// /// Returns a COM-defined error value otherwise. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ienumfullidlist-next HRESULT Next( ULONG // celt, PIDLIST_ABSOLUTE *rgelt, ULONG *pceltFetched ); [PreserveSig] HRESULT Next(uint celt, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] IntPtr[] rgelt, out uint pceltFetched); /// Skips a specified number of IDLIST_ABSOLUTE items. /// /// Type: ULONG /// The number of items to skip. /// /// The enumeration index is advanced by the number of items skipped. // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ienumfullidlist-skip HRESULT Skip( ULONG // celt ); void Skip(uint celt); /// Returns the enumerator to the beginning of the enumeration sequence. // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ienumfullidlist-reset HRESULT Reset(); void Reset(); /// Creates a new item enumeration object with the same contents and state as the current one. /// /// Type: IEnumFullIDList** /// On success, contains the address of an IEnumFullIDList interface pointer. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ienumfullidlist-clone HRESULT Clone( // IEnumFullIDList **ppenum ); IEnumFullIDList Clone(); } /// /// Exposes methods that can be called to get information on or close a file that is in use by another application. When an /// application attempts to access a file and finds that file already in use, it can use the methods of this interface to gather /// information to present to the user in a dialog box. /// /// /// /// In versions of Windows before Windows Vista, when a user attempted to access a file that was open in another application, the /// user would simply receive a dialog box with a message stating that the file was already open. The message instructed that the /// user close the other application, but did not identify it. Other than that suggestion, the dialog box provided no user action to /// address the situation. This interface provides methods that can lead to a more informative dialog box from which the user can /// take direct action. /// /// The Running Object Table /// /// When an application opens a file, that application registers the file by inserting the instantiated IFileIsInUse object /// into the running object table (ROT). The ROT is a globally accessible lookup table that keeps track of currently running /// objects. These objects can be identified by a moniker. When a client attempts to bind a moniker to an object, the moniker checks /// the ROT to determine whether the object is already running. This allows the moniker to bind to the current instance rather than /// loading a new instance. /// /// Perform these steps to add a file to the ROT: /// /// /// Call the GetRunningObjectTable function to retrieve an instance of IRunningObjectTable. /// /// /// Create an IFileIsInUse object for the file that is currently in use. /// /// /// Create an IMoniker object for the file that is currently in use. /// /// /// Insert the IFileIsInUse and IMoniker objects into the ROT by calling IRunningObjectTable::Register. /// /// /// /// In the call to Register, specify the ROTFLAGS_ALLOWANYCLIENT flag. This allows the ROT entry to work across security /// boundaries. Use of this flag requires the calling application to have an explicit Application User Model ID (AppUserModelID) /// (System.AppUserModel.ID). An explicit AppUserModelID allows the Component Object Model (COM) to inspect the application's /// security settings. An attempt to call Register with ROTFLAGS_ALLOWANYCLIENT and no explicit AppUserModelID will fail. You /// can call Register without the ROTFLAGS_ALLOWANYCLIENT flag and the application will work correctly, but only within its /// own security level. /// /// /// The value retrieved in the Register method's [out] parameter is used to identify the entry in later calls to retrieve or remove /// it from the ROT. /// /// When to Implement /// /// Applications that open file types that can be opened by other applications should implement IFileIsInUse. An /// application's implementation of this interface enables Windows Explorer to discover the source of sharing errors, which enables /// users to address and retry operations that fail due to those errors. /// /// When to Use /// /// An application calls IFileIsInUse to communicate with other applications to resolve sharing errors. These errors occur in /// response to user action in the file system. For example, when a user attempts to rename a folder while a file in that folder is /// open in an application, the renaming operation fails. Windows Explorer can call that appplication's implementation of /// IFileIsInUse to help the user identify the conflict and resolve this issue. /// /// Sample /// /// See the File Is in Use sample, which demonstrates how to implement IFileIsInUse and register a file with the ROT. It then /// shows how to customize the File In Use dialog to display additional information and options for files currently opened in /// an application. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nn-shobjidl_core-ifileisinuse [PInvokeData("shobjidl_core.h", MSDNShortId = "68a4ab3d-165e-4917-8915-77f15901dbad")] [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("64a1cbf0-3a1a-4461-9158-376969693950")] public interface IFileIsInUse { /// Retrieves the name of the application that is using the file. /// /// Type: LPWSTR* /// The address of a pointer to a buffer that, when this method returns successfully, receives the application name. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// This information can be passed to the user in a dialog box so that the user knows the source of the conflict and can act /// accordingly. For instance "File.txt is in use by Litware." /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-ifileisinuse-getappname HRESULT // GetAppName( LPWSTR *ppszName ); [PreserveSig] HRESULT GetAppName([MarshalAs(UnmanagedType.LPWStr)] out string? ppszName); /// Gets a value that indicates how the file in use is being used. /// /// Type: FILE_USAGE_TYPE* /// Pointer to a value that, when this method returns successfully, receives one of the FILE_USAGE_TYPE values. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-ifileisinuse-getusage HRESULT GetUsage( // FILE_USAGE_TYPE *pfut ); [PreserveSig] HRESULT GetUsage(out FILE_USAGE_TYPE pfut); /// /// Determines whether the file can be closed and whether the UI is capable of switching to the window of the application that /// is using the file. /// /// /// Type: DWORD* /// /// A pointer to a value that, when this method returns successfully, receives the capability flags. One or both of the /// following values: /// /// OF_CAP_CANSWITCHTO (0x0001) /// 0x0001. The UI can switch to the top-level window of the application that is using the file. /// OF_CAP_CANCLOSE (0x0002) /// 0x0002. The file can be closed. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// The capabilities returned by this method can be used in the composition of the dialog box presented to the user that informs /// them of the sharing conflict. For instance, if the OF_CAP_CANSWITCHTO flag is retrieved, a button can be added to the dialog /// box that will switch the user to the conflicting application window (based on the HWND information retrieved by /// IFileIsInUse::GetSwitchToHWND) so that the user can address the situation as they see fit. If the OF_CAP_CANCLOSE flag is /// retrieved, the dialog box can present a Close button that calls the CloseFile method. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-ifileisinuse-getcapabilities HRESULT // GetCapabilities( DWORD *pdwCapFlags ); [PreserveSig] HRESULT GetCapabilities(out OF_CAP pdwCapFlags); /// Retrieves the handle of the top-level window of the application that is using the file. /// /// Type: HWND* /// A pointer to an HWND value that, when this method returns successfully, receives the window handle. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// Only files that return the capability flag OF_CAP_CANSWITCHTO can be switched to. // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-ifileisinuse-getswitchtohwnd HRESULT // GetSwitchToHWND( HWND *phwnd ); [PreserveSig] HRESULT GetSwitchToHWND(out HWND phwnd); /// Closes the file currently in use. /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// Only files that return the capability flag OF_CAP_CANCLOSE can be closed by this method. If that flag is returned, the user /// can be presented with a dialog box that includes a Close option that calls this method. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-ifileisinuse-closefile HRESULT CloseFile( ); [PreserveSig] HRESULT CloseFile(); } /// Exposes methods that store file system information for optimizing calls to IShellFolder::ParseDisplayName. /// /// /// IFileSystemBindData stores the file system information in a WIN32_FIND_DATA structure. The object that implements /// IFileSystemBindData is then stored in a bind context that is passed to IShellFolder::ParseDisplayName. /// /// /// Implement IFileSystemBindData when you want to optimize calls to IShellFolder::ParseDisplayName and you already have the /// WIN32_FIND_DATA structure's file information available to you. /// /// /// To store the WIN32_FIND_DATA information prior to calling IShellFolder::ParseDisplayName, the client uses the following procedure. /// /// /// /// Create an instance of the object that exposes the IFileSystemBindData interface. /// /// /// Use IFileSystemBindData::SetFindData to store the data in the object. /// /// /// /// Store the object in a bind context through the IBindCtx::RegisterObjectParam method. Set the pszKey parameter to the string and /// the punk parameter to the address of the IFileSystemBindData interface. /// /// /// /// The bind context is then passed with the call to IShellFolder::ParseDisplayName. /// Note Prior to Windows Vista this interface was declared in Shlobj.h. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nn-shobjidl_core-ifilesystembinddata [PInvokeData("shobjidl_core.h", MSDNShortId = "f5099bb3-21a7-4708-ac48-d32a14646614")] [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("01E18D10-4D8B-11d2-855D-006008059367")] public interface IFileSystemBindData { /// Stores file system information in a WIN32_FIND_DATA structure. This information is used by ParseDisplayName. /// /// Type: const WIN32_FIND_DATA* /// A pointer to the WIN32_FIND_DATA structure that specifies the data you want to store. /// /// /// Type: HRESULT /// Always returns S_OK. /// /// /// After the client stores the file information, the instance of the object itself must be stored in a bind context by using /// the IBindCtx::RegisterObjectParam method with the pszKey parameter set to . /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifilesystembinddata-setfinddata HRESULT // SetFindData( const WIN32_FIND_DATAW *pfd ); [PreserveSig] HRESULT SetFindData(in WIN32_FIND_DATA pfd); /// Gets the file system information stored in the WIN32_FIND_DATA structure. /// /// Type: WIN32_FIND_DATA* /// A pointer to the WIN32_FIND_DATA structure that receives the data. /// /// /// Type: HRESULT /// Returns S_OK. /// /// /// This method provides bind context information to IShellFolder::ParseDisplayName. The client accesses the object by calling /// IBindCtx::GetObjectParam with the pszKey parameter set to the string "File System Bind Data". /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifilesystembinddata-getfinddata HRESULT // GetFindData( WIN32_FIND_DATAW *pfd ); [PreserveSig] HRESULT GetFindData(out WIN32_FIND_DATA pfd); } /// /// Extends IFileSystemBindData, which stores file system information for optimizing calls to IShellFolder::ParseDisplayName. This /// interface adds the ability set or get file ID or junction class identifier (CLSID). /// /// /// This interface also provides the methods of the IFileSystemBindData interface, from which it inherits. /// /// To pass the information expressed in this interface to a data source IShellFolder::ParseDisplayName, an IBindCtx object is /// created (use CreateBindCtx) and populated with an object that implements IFileSystemBindData by calling the following: /// /// Where pfsbd is the object that implements IFileSystemBindData. /// Implementers of IShellFolder::ParseDisplayName first make the following call. /// Next the implementer calls one of the Get methods listed above to retrieve the parameters. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nn-shobjidl_core-ifilesystembinddata2 [PInvokeData("shobjidl_core.h", MSDNShortId = "c9659147-e2b6-4040-b939-42b7efec32d7")] [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("3acf075f-71db-4afa-81f0-3fc4fdf2a5b8")] public interface IFileSystemBindData2 : IFileSystemBindData { /// Stores file system information in a WIN32_FIND_DATA structure. This information is used by ParseDisplayName. /// /// Type: const WIN32_FIND_DATA* /// A pointer to the WIN32_FIND_DATA structure that specifies the data you want to store. /// /// /// Type: HRESULT /// Always returns S_OK. /// /// /// After the client stores the file information, the instance of the object itself must be stored in a bind context by using /// the IBindCtx::RegisterObjectParam method with the pszKey parameter set to . /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifilesystembinddata-setfinddata HRESULT // SetFindData( const WIN32_FIND_DATAW *pfd ); [PreserveSig] new HRESULT SetFindData(in WIN32_FIND_DATA pfd); /// Gets the file system information stored in the WIN32_FIND_DATA structure. /// /// Type: WIN32_FIND_DATA* /// A pointer to the WIN32_FIND_DATA structure that receives the data. /// /// /// Type: HRESULT /// Returns S_OK. /// /// /// This method provides bind context information to IShellFolder::ParseDisplayName. The client accesses the object by calling /// IBindCtx::GetObjectParam with the pszKey parameter set to the string "File System Bind Data". /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifilesystembinddata-getfinddata HRESULT // GetFindData( WIN32_FIND_DATAW *pfd ); [PreserveSig] new HRESULT GetFindData(out WIN32_FIND_DATA pfd); /// Sets the unique file identifier for the current file. /// /// Type: LARGE_INTEGER /// /// A unique file identifier for the current file. liFileID is a value that is a concatenation of the values nFileIndexHigh and /// nFileIndexlow, noted in structure _by_handle_file_information. /// /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifilesystembinddata2-setfileid HRESULT // SetFileID( LARGE_INTEGER liFileID ); [PreserveSig] HRESULT SetFileID(long liFileID); /// Gets the unique file identifier for the current file. /// /// Type: LARGE_INTEGER* /// /// When this method returns successfully, receives a pointer to the unique file identifier for the current file. pliFileID is a /// pointer to a value that is a concatenation of the values nFileIndexHigh and nFileIndexlow, noted in structure _by_handle_file_information. /// /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifilesystembinddata2-getfileid HRESULT // GetFileID( LARGE_INTEGER *pliFileID ); [PreserveSig] HRESULT GetFileID(out long pliFileID); /// /// Sets the class identifier (CLSID) of the object that implements IShellFolder, if the current item is a junction point. /// /// /// Type: REFCLSID /// The CLSID for the object that implements IShellFolder with a junction point as its current item. /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifilesystembinddata2-setjunctionclsid // HRESULT SetJunctionCLSID( REFCLSID clsid ); [PreserveSig] HRESULT SetJunctionCLSID(in Guid clsid); /// /// Gets the class identifier (CLSID) of the object that implements IShellFolder for the item, if the item is a junction point. /// /// /// Type: CLSID* /// /// When this method returns successfully, receives a pointer to the CLSID of the object that implements IShellFolder for the /// current item, if the item is a junction point. /// /// /// /// Type: HRESULT /// If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifilesystembinddata2-getjunctionclsid // HRESULT GetJunctionCLSID( CLSID *pclsid ); [PreserveSig] HRESULT GetJunctionCLSID(out Guid pclsid); } /// Exposes methods that are used to persist item identifier lists. // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nn-shobjidl_core-ipersistidlist [PInvokeData("shobjidl_core.h", MSDNShortId = "NN:shobjidl_core.IPersistIDList")] [ComImport, Guid("1079acfc-29bd-11d3-8e0d-00c04f6837d5"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface IPersistIDList : IPersist { /// Retrieves the class identifier (CLSID) of the object. /// /// /// A pointer to the location that receives the CLSID on return. The CLSID is a globally unique identifier (GUID) that uniquely /// represents an object class that defines the code that can manipulate the object's data. /// /// If the method succeeds, the return value is S_OK. Otherwise, it is E_FAIL. /// /// /// /// The GetClassID method retrieves the class identifier (CLSID) for an object, used in later operations to load /// object-specific code into the caller's context. /// /// Notes to Callers /// /// A container application might call this method to retrieve the original CLSID of an object that it is treating as a /// different class. Such a call would be necessary if a user performed an editing operation that required the object to be /// saved. If the container were to save it using the treat-as CLSID, the original application would no longer be able to edit /// the object. Typically, in this case, the container calls the OleSave helper function, which performs all the necessary /// steps. For this reason, most container applications have no need to call this method directly. /// /// /// The exception would be a container that provides an object handler for certain objects. In particular, a container /// application should not get an object's CLSID and then use it to retrieve class specific information from the registry. /// Instead, the container should use IOleObject and IDataObject interfaces to retrieve such class-specific information directly /// from the object. /// /// Notes to Implementers /// /// Typically, implementations of this method simply supply a constant CLSID for an object. If, however, the object's /// TreatAs registry key has been set by an application that supports emulation (and so is treating the object as one of /// a different class), a call to GetClassID must supply the CLSID specified in the TreatAs key. For more /// information on emulation, see CoTreatAsClass. /// /// /// When an object is in the running state, the default handler calls an implementation of GetClassID that delegates the /// call to the implementation in the object. When the object is not running, the default handler instead calls the ReadClassStg /// function to read the CLSID that is saved in the object's storage. /// /// /// If you are writing a custom object handler for your object, you might want to simply delegate this method to the default /// handler implementation (see OleCreateDefaultHandler). /// /// URL Moniker Notes /// This method returns CLSID_StdURLMoniker. /// // https://docs.microsoft.com/en-us/windows/desktop/api/objidl/nf-objidl-ipersist-getclassid HRESULT GetClassID( CLSID *pClassID ); new Guid GetClassID(); /// Sets a persisted item identifier list. /// /// Type: LPCITEMIDLIST /// A pointer to the item identifier list to set. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ipersistidlist-setidlist HRESULT SetIDList( // PCIDLIST_ABSOLUTE pidl ); void SetIDList([In] PIDL pidl); /// Gets an item identifier list. /// /// Type: LPITEMIDLIST* /// The address of a pointer to the item identifier list to get. /// // https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ipersistidlist-getidlist HRESULT GetIDList( // PIDLIST_ABSOLUTE *ppidl ); void GetIDList(ref PIDL ppidl); } /// /// Exposes methods that the Shell uses to retrieve flags and info tip information for an item that resides in an IShellFolder /// implementation. Info tips are usually displayed inside a tooltip control. /// [ComImport, Guid("00021500-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb761359")] public interface IQueryInfo { /// Gets the information tip. /// /// Flags that direct the handling of the item from which you're retrieving the info tip text. This value is commonly zero (QITIPF_DEFAULT). /// /// /// The address of a Unicode string pointer that, when this method returns successfully, receives the tip string pointer. /// Applications that implement this method must allocate memory for ppwszTip by calling CoTaskMemAlloc. Calling applications /// must call CoTaskMemFree to free the memory when it is no longer needed. /// /// > void GetInfoTip(QITIP dwFlags, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(CoTaskMemStringMarshaler))] out string ppwszTip); /// Gets the information flags for an item. This method is not currently used. /// /// A pointer to a value that receives the flags for the item. If no flags are to be returned, this value should be set to zero. /// uint GetInfoFlags(); } /// Enumerates the specified instance with an optional fetch size. /// The identifier list to enumerate. If this value is , this will return an empty set. /// Size of the block of PIDL instances to fetch with a single call. /// A sequence of instances from . /// fetchSize - You must specify a number greater than or equal to 1. public static IEnumerable Enumerate(this IEnumIDList idList, int fetchSize = 1) { if (fetchSize < 1) throw new ArgumentOutOfRangeException(nameof(fetchSize), "You must specify a number greater than or equal to 1."); if (idList is null) yield break; var pidls = new IntPtr[fetchSize]; HRESULT hr; while ((hr = idList.Next((uint)pidls.Length, pidls, out var cnt)).Succeeded && cnt > 0) { for (int i = 0; i < cnt; i++) yield return new PIDL(pidls[i]); if (hr == HRESULT.S_FALSE) yield break; } hr.ThrowIfFailed(); } /// Retrieves the User Model AppID that has been explicitly set for the current process via SetCurrentProcessExplicitAppUserModelID /// The application identifier. /// [DllImport(Lib.Shell32, ExactSpelling = true)] [PInvokeData("Shobjidl.h", MSDNShortId = "dd378419")] public static extern HRESULT GetCurrentProcessExplicitAppUserModelID([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(CoTaskMemStringMarshaler))] out string AppID); /// Clones an ITEMIDLIST structure. /// A pointer to the ITEMIDLIST structure to be cloned. /// Returns a pointer to a copy of the ITEMIDLIST structure pointed to by pidl. [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776433")] public static extern PIDL ILClone(IntPtr pidl); /// Clones the first SHITEMID structure in an ITEMIDLIST structure. /// A pointer to the ITEMIDLIST structure to be cloned. /// /// A pointer to an ITEMIDLIST structure that contains the first SHITEMID structure from the ITEMIDLIST structure specified by pidl. /// Returns NULL on failure. /// [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776435")] public static extern PIDL ILCloneFirst(IntPtr pidl); /// Combines two ITEMIDLIST structures. /// A pointer to the first ITEMIDLIST structure. /// /// A pointer to the second ITEMIDLIST structure. This structure is appended to the structure pointed to by pidl1. /// /// /// Returns an ITEMIDLIST containing the combined structures. If you set either pidl1 or pidl2 to NULL, the returned ITEMIDLIST /// structure is a clone of the non-NULL parameter. Returns NULL if pidl1 and pidl2 are both set to NULL. /// [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776437")] public static extern PIDL ILCombine(IntPtr pidl1, IntPtr pidl2); /// Returns the ITEMIDLIST structure associated with a specified file path. /// /// A pointer to a null-terminated Unicode string that contains the path. This string should be no more than MAX_PATH characters in /// length, including the terminating null character. /// /// Returns a pointer to an ITEMIDLIST structure that corresponds to the path. [DllImport(Lib.Shell32, CharSet = CharSet.Auto, SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "dd378420")] public static extern PIDL ILCreateFromPath(string pszPath); /// Returns a pointer to the last SHITEMID structure in an ITEMIDLIST structure. /// A pointer to an ITEMIDLIST structure. /// A pointer to the last SHITEMID structure in pidl. [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776440")] public static extern IntPtr ILFindLastID(IntPtr pidl); /// Frees an ITEMIDLIST structure allocated by the Shell. /// A pointer to the ITEMIDLIST structure to be freed. This parameter can be NULL. [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776441")] public static extern void ILFree(IntPtr pidl); /// Returns the size, in bytes, of an SHITEMID structure. /// A pointer to an SHITEMID structure. /// The size of the SHITEMID structure specified by pidl, in bytes. [PInvokeData("Shobjidl.h", MSDNShortId = "bb762502")] public static int ILGetItemSize(IntPtr pidl) => pidl.Equals(IntPtr.Zero) ? 0 : Marshal.ReadInt16(pidl); /// Retrieves the next SHITEMID structure in an ITEMIDLIST structure. /// A pointer to a particular SHITEMID structure in a larger ITEMIDLIST structure. /// /// Returns a pointer to the SHITEMID structure that follows the one specified by pidl. Returns NULL if pidl points to the last /// SHITEMID structure. /// [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776442")] public static extern IntPtr ILGetNext(IntPtr pidl); /// Returns the size, in bytes, of an ITEMIDLIST structure. /// A pointer to an ITEMIDLIST structure. /// The size of the ITEMIDLIST structure specified by pidl, in bytes. [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776443")] public static extern uint ILGetSize(IntPtr pidl); /// Verifies whether a pointer to an item identifier list (PIDL) is a child PIDL, which is a PIDL with exactly one SHITEMID. /// A constant, unaligned, relative PIDL that is being checked. /// Returns TRUE if the given PIDL is a child PIDL; otherwise, FALSE. [PInvokeData("Shobjidl.h", MSDNShortId = "bb776446")] public static bool ILIsChild(IntPtr pidl) => ILIsEmpty(pidl) || ILIsEmpty(ILNext(pidl)); /// Verifies whether an ITEMIDLIST structure is empty. /// A pointer to the ITEMIDLIST structure to be checked. /// TRUE if the pidl parameter is NULL or the ITEMIDLIST structure pointed to by pidl is empty; otherwise FALSE. [PInvokeData("Shobjidl.h", MSDNShortId = "bb776447")] public static bool ILIsEmpty(IntPtr pidl) => ILGetItemSize(pidl) == 0; /// Tests whether two ITEMIDLIST structures are equal in a binary comparison. /// The first ITEMIDLIST structure. /// The second ITEMIDLIST structure. /// Returns TRUE if the two structures are equal, FALSE otherwise. [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [return: MarshalAs(UnmanagedType.Bool)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776448")] public static extern bool ILIsEqual(IntPtr pidl1, IntPtr pidl2); /// Tests whether an ITEMIDLIST structure is the parent of another ITEMIDLIST structure. /// A pointer to an ITEMIDLIST (PIDL) structure that specifies the parent. This must be an absolute PIDL. /// A pointer to an ITEMIDLIST (PIDL) structure that specifies the child. This must be an absolute PIDL. /// /// A Boolean value that is set to TRUE to test for immediate parents of pidl2, or FALSE to test for any parents of pidl2. /// /// /// Returns TRUE if pidl1 is a parent of pidl2. If fImmediate is set to TRUE, the function only returns TRUE if pidl1 is the /// immediate parent of pidl2. Otherwise, the function returns FALSE. /// [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [return: MarshalAs(UnmanagedType.Bool)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776449")] public static extern bool ILIsParent(IntPtr pidl1, IntPtr pidl2, [MarshalAs(UnmanagedType.Bool)] bool fImmediate); /// Retrieves the next SHITEMID structure in an ITEMIDLIST structure. /// A constant, unaligned, relative PIDL for which the next SHITEMID structure is being retrieved. /// /// When this function returns, contains one of three results: If pidl is valid and not the last SHITEMID in the ITEMIDLIST, then it /// contains a pointer to the next ITEMIDLIST structure. If the last ITEMIDLIST structure is passed, it contains NULL, which signals /// the end of the PIDL. For other values of pidl, the return value is meaningless. /// [PInvokeData("Shobjidl.h", MSDNShortId = "bb776454")] public static IntPtr ILNext(IntPtr pidl) { var size = ILGetItemSize(pidl); return size == 0 ? IntPtr.Zero : pidl.Offset(size); } /// Removes the last SHITEMID structure from an ITEMIDLIST structure. /// /// A pointer to the ITEMIDLIST structure to be shortened. When the function returns, this variable points to the shortened structure. /// /// Returns TRUE if successful, FALSE otherwise. [DllImport(Lib.Shell32, ExactSpelling = true, SetLastError = false)] [return: MarshalAs(UnmanagedType.Bool)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776456")] public static extern bool ILRemoveLastID(IntPtr pidl); /// Returns the ITEMIDLIST structure associated with a specified file path. /// /// A pointer to a null-terminated Unicode string that contains the path. This string should be no more than MAX_PATH characters in /// length, including the terminating null character. /// /// Returns a pointer to an ITEMIDLIST structure that corresponds to the path. [DllImport(Lib.Shell32, EntryPoint = "ILCreateFromPathW", SetLastError = true)] [PInvokeData("Shobjidl.h", MSDNShortId = "dd378420")] public static extern IntPtr IntILCreateFromPath([MarshalAs(UnmanagedType.LPWStr)] string pszPath); /// /// Specifies a unique application-defined Application User Model ID (AppUserModelID) that identifies the current process to the /// taskbar. This identifier allows an application to group its associated processes and windows under a single taskbar button. /// /// Pointer to the AppUserModelID to assign to the current process. [DllImport(Lib.Shell32, ExactSpelling = true)] [PInvokeData("Shobjidl.h", MSDNShortId = "dd378422")] public static extern HRESULT SetCurrentProcessExplicitAppUserModelID([MarshalAs(UnmanagedType.LPWStr)] string AppID); /// /// Returns an enumeration object for a specified set of file name extension handlers. /// /// /// Type: PCWSTR /// /// A pointer to a null-terminated buffer that contains a single file type extension, for instance ".jpg". Only handlers associated /// with the given extension are enumerated. If this value is NULL, all handlers for all extensions are enumerated. /// /// /// /// Type: ASSOC_FILTER /// /// Specifies the enumeration handler filter applied to the full list of handlers that results from the value given in . One of the /// following values. /// /// ASSOC_FILTER_NONE /// Return all handlers. /// ASSOC_FILTER_RECOMMENDED /// /// Return only recommended handlers. A handler sets its recommended status in the registry when it is installed. An initial status /// of non-recommended can later be promoted to recommended as a result of user action. /// /// /// /// Type: IEnumAssocHandlers** /// When this method returns, contains the address of a pointer to an IEnumAssocHandlers object. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shassocenumhandlers SHSTDAPI // SHAssocEnumHandlers( PCWSTR pszExtra, ASSOC_FILTER afFilter, IEnumAssocHandlers **ppEnumHandler ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "83db466b-e00c-4015-879f-c5c222f45b8c")] public static extern HRESULT SHAssocEnumHandlers([MarshalAs(UnmanagedType.LPWStr)] string? pszExtra, ASSOC_FILTER afFilter, out IEnumAssocHandlers ppEnumHandler); /// /// Gets an enumeration interface that provides access to handlers associated with a given protocol. /// /// /// Type: PCWSTR /// Pointer to a string that specifies the protocol. /// /// /// Type: REFIID /// A reference to the IID of the interface to retrieve through , typically IID_IEnumAssocHandlers. /// /// /// Type: void** /// When this method returns, contains the interface pointer requested in . This is typically IEnumAssocHandlers. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// /// It is recommended that you use the IID_PPV_ARGS macro, defined in Objbase.h, to package the and parameters. This macro /// provides the correct IID based on the interface pointed to by the value in , which eliminates the possibility of a coding error. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shassocenumhandlersforprotocolbyapplication // SHSTDAPI SHAssocEnumHandlersForProtocolByApplication( PCWSTR protocol, REFIID riid, void **enumHandlers ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "8bc3b9ce-5909-46a0-b5f1-35ab808aaa55")] public static extern HRESULT SHAssocEnumHandlersForProtocolByApplication([MarshalAs(UnmanagedType.LPWStr)] string protocol, in Guid riid, [MarshalAs(UnmanagedType.IUnknown)] out object enumHandlers); /// Gets an enumeration interface that provides access to handlers associated with a given protocol. /// The type of the interface to retrieve, typically IID_IEnumAssocHandlers. /// /// Type: PCWSTR /// Pointer to a string that specifies the protocol. /// /// /// When this method returns, contains the interface pointer requested in . This is typically IEnumAssocHandlers. /// /// /// It is recommended that you use the IID_PPV_ARGS macro, defined in Objbase.h, to package the and parameters. This macro /// provides the correct IID based on the interface pointed to by the value in , which eliminates the possibility of a coding error. /// [PInvokeData("shobjidl_core.h", MSDNShortId = "8bc3b9ce-5909-46a0-b5f1-35ab808aaa55")] public static TIntf? SHAssocEnumHandlersForProtocolByApplication(string protocol) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHAssocEnumHandlersForProtocolByApplication(protocol, g, out o)); /// /// Creates an IApplicationAssociationRegistration object based on the stock implementation of the interface provided by Windows. /// /// /// Type: REFIID /// A reference to the IID of the requested interface. /// /// /// Type: void** /// When this function returns, contains the address of a pointer to the IApplicationAssociationRegistration object. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shcreateassociationregistration SHSTDAPI // SHCreateAssociationRegistration( REFIID riid, void **ppv ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "7998f49d-2515-4c77-991e-62c0fefa43df")] public static extern HRESULT SHCreateAssociationRegistration(in Guid riid, out IApplicationAssociationRegistration ppv); /// /// Creates an IApplicationAssociationRegistration object based on the stock implementation of the interface provided by Windows. /// /// When this function returns, contains the address of a pointer to the IApplicationAssociationRegistration object. // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shcreateassociationregistration SHSTDAPI // SHCreateAssociationRegistration( REFIID riid, void **ppv ); [PInvokeData("shobjidl_core.h", MSDNShortId = "7998f49d-2515-4c77-991e-62c0fefa43df")] public static IApplicationAssociationRegistration SHCreateAssociationRegistration() { SHCreateAssociationRegistration(typeof(IApplicationAssociationRegistration).GUID, out var ppv).ThrowIfFailed(); return ppv; } /// /// Creates a standard icon extractor, whose defaults can be further configured via the IDefaultExtractIconInit interface. /// /// /// Type: REFIID /// A reference to interface ID. /// /// /// Type: void** /// The address of IDefaultExtractIconInit interface pointer. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// The intended usage for this function is as follows: /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shcreatedefaultextracticon HRESULT // SHCreateDefaultExtractIcon( REFIID riid, void **ppv ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "483dc9ae-4820-47f1-888e-ad7a6bdf3d29")] public static extern HRESULT SHCreateDefaultExtractIcon(in Guid riid, out IDefaultExtractIconInit ppv); /// /// Creates a file operation that sets the default properties on the Shell item that have not already been set. /// /// /// Type: IShellItem* /// A pointer to the source shell item. See IShellItem. /// /// /// Type: IFileOperation** /// The address of the IFileOperation interface pointer. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// /// The list of properties to set a default value comes from the SetDefaultsFor registry entry under the ProgID for the file /// association of the item. The list is prefixed by and contains the canonical names of the properties to set the default value, /// for example, . The possible properties for this list are System.Author, System.Document.DateCreated, and System.Photo.DateTaken. /// If the SetDefaultsFor entry does not exist on the ProgID, this function uses the default found on the /// SetDefaultsFor entry of HKEY_CLASSES_ROOT<b>*. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl/nf-shobjidl-shcreatedefaultpropertiesop SHSTDAPI // SHCreateDefaultPropertiesOp( IShellItem *psi, IFileOperation **ppFileOp ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl.h", MSDNShortId = "5202ac48-16e7-4d64-8a69-2493036e1e11")] public static extern HRESULT SHCreateDefaultPropertiesOp(IShellItem psi, out IFileOperation ppFileOp); /// /// Creates and initializes a Shell item object from a pointer to an item identifier list (PIDL). The resulting shell item object /// supports the IShellItem interface. /// /// The source PIDL. /// A reference to the IID of the requested interface. /// /// When this function returns, contains the interface pointer requested in riid. This will typically be IShellItem or IShellItem2. /// /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. [DllImport(Lib.Shell32, ExactSpelling = true)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762133")] public static extern HRESULT SHCreateItemFromIDList(PIDL pidl, in Guid riid, [MarshalAs(UnmanagedType.IUnknown, IidParameterIndex = 1)] out object? ppv); /// /// Creates and initializes a Shell item object from a pointer to an item identifier list (PIDL). The resulting shell item object /// supports the IShellItem interface. /// /// The type of the requested interface. This will typically be IShellItem or IShellItem2. /// The source PIDL. /// When this function returns, contains the interface pointer requested. [PInvokeData("Shobjidl.h", MSDNShortId = "bb762133")] public static TIntf? SHCreateItemFromIDList(PIDL pidl) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHCreateItemFromIDList(pidl, g, out o)); /// Creates and initializes a Shell item object from a parsing name. /// A pointer to a display name. /// /// Optional. A pointer to a bind context used to pass parameters as inputs and outputs to the parsing function. These passed /// parameters are often specific to the data source and are documented by the data source owners. For example, the file system data /// source accepts the name being parsed (as a WIN32_FIND_DATA structure), using the STR_FILE_SYS_BIND_DATA bind context parameter. /// /// STR_PARSE_PREFER_FOLDER_BROWSING can be passed to indicate that URLs are parsed using the file system data source when /// possible.Construct a bind context object using CreateBindCtx and populate the values using IBindCtx::RegisterObjectParam. See /// Bind Context String Keys for a complete list of these.See the Parsing With Parameters Sample for an example of the use of this parameter. /// /// If no data is being passed to or received from the parsing function, this value can be NULL. /// /// A reference to the IID of the interface to retrieve through ppv, typically IID_IShellItem or IID_IShellItem2. /// /// When this method returns successfully, contains the interface pointer requested in riid. This is typically IShellItem or IShellItem2. /// /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. [DllImport(Lib.Shell32, ExactSpelling = true)] [PInvokeData("Shlobjidl.h", MSDNShortId = "bb762134")] public static extern HRESULT SHCreateItemFromParsingName( [In, MarshalAs(UnmanagedType.LPWStr)] string pszPath, [In, Optional] IBindCtx? pbc, in Guid riid, [MarshalAs(UnmanagedType.Interface, IidParameterIndex = 2)] out object? ppv); /// Creates and initializes a Shell item object from a parsing name. /// The type of the interface to retrieve, typically IID_IShellItem or IID_IShellItem2. /// A pointer to a display name. /// /// Optional. A pointer to a bind context used to pass parameters as inputs and outputs to the parsing function. These passed /// parameters are often specific to the data source and are documented by the data source owners. For example, the file system data /// source accepts the name being parsed (as a WIN32_FIND_DATA structure), using the STR_FILE_SYS_BIND_DATA bind context parameter. /// /// STR_PARSE_PREFER_FOLDER_BROWSING can be passed to indicate that URLs are parsed using the file system data source when /// possible.Construct a bind context object using CreateBindCtx and populate the values using IBindCtx::RegisterObjectParam. See /// Bind Context String Keys for a complete list of these.See the Parsing With Parameters Sample for an example of the use of this parameter. /// /// If no data is being passed to or received from the parsing function, this value can be NULL. /// /// /// When this method returns successfully, contains the interface pointer requested in . This is typically /// IShellItem or IShellItem2. /// [PInvokeData("Shlobjidl.h", MSDNShortId = "bb762134")] public static T? SHCreateItemFromParsingName(string pszPath, IBindCtx? pbc = null) where T : class => IidGetObj((in Guid g, out object? o) => SHCreateItemFromParsingName(pszPath, pbc, g, out o)); /// Creates and initializes a Shell item object from a relative parsing name. /// A pointer to the parent Shell item. /// /// A pointer to a null-terminated, Unicode string that specifies a display name that is relative to the psiParent. /// /// A pointer to a bind context that controls the parsing operation. This parameter can be NULL. /// A reference to an interface ID. /// /// When this function returns, contains the interface pointer requested in riid. This will usually be IShellItem or IShellItem2. /// [DllImport(Lib.Shell32, CharSet = CharSet.Unicode, ExactSpelling = true)] [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762135")] public static extern HRESULT SHCreateItemFromRelativeName([In, MarshalAs(UnmanagedType.Interface)] IShellItem psiParent, [In, MarshalAs(UnmanagedType.LPWStr)] string pszName, [In, Optional, MarshalAs(UnmanagedType.Interface)] IBindCtx? pbc, in Guid riid, [MarshalAs(UnmanagedType.Interface, IidParameterIndex = 3)] out object? ppv); /// Creates and initializes a Shell item object from a relative parsing name. /// The type of the requested interface. This will typically be IShellItem or IShellItem2. /// A pointer to the parent Shell item. /// /// A pointer to a null-terminated, Unicode string that specifies a display name that is relative to the psiParent. /// /// A pointer to a bind context that controls the parsing operation. This parameter can be NULL. /// /// When this function returns, contains the interface pointer requested in riid. This will usually be IShellItem or IShellItem2. /// [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762135")] public static TIntf? SHCreateItemFromRelativeName(IShellItem psiParent, string pszName, IBindCtx? pbc = null) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHCreateItemFromRelativeName(psiParent, pszName, pbc, g, out o)); /// Creates a Shell item object for a single file that exists inside a known folder. /// A reference to the KNOWNFOLDERID, a GUID that identifies the folder that contains the item. /// /// Flags that specify special options in the object retrieval. This value can be 0; otherwise, one or more of the KNOWN_FOLDER_FLAG values. /// /// /// A pointer to a null-terminated buffer that contains the file name of the new item as a Unicode string. This parameter can also /// be NULL. In this case, an IShellItem that represents the known folder itself is created. /// /// A reference to an interface ID. /// /// When this function returns, contains the interface pointer requested in riid. This will usually be IShellItem or IShellItem2. /// [DllImport(Lib.Shell32, CharSet = CharSet.Unicode, ExactSpelling = true)] [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762136")] public static extern HRESULT SHCreateItemInKnownFolder(in Guid kfid, [In] KNOWN_FOLDER_FLAG dwKFFlags, [In, Optional, MarshalAs(UnmanagedType.LPWStr)] string? pszItem, in Guid riid, [MarshalAs(UnmanagedType.Interface, IidParameterIndex = 3)] out object? ppv); /// Creates a Shell item object for a single file that exists inside a known folder. /// The type of the requested interface. This will typically be IShellItem or IShellItem2. /// A reference to the KNOWNFOLDERID that identifies the folder that contains the item. /// /// Flags that specify special options in the object retrieval. This value can be 0; otherwise, one or more of the KNOWN_FOLDER_FLAG values. /// /// /// A pointer to a null-terminated buffer that contains the file name of the new item as a Unicode string. This parameter can also /// be NULL. In this case, an IShellItem that represents the known folder itself is created. /// /// /// When this function returns, contains the interface pointer requested in riid. This will usually be IShellItem or IShellItem2. /// [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762136")] public static TIntf? SHCreateItemInKnownFolder(KNOWNFOLDERID kfid, KNOWN_FOLDER_FLAG dwKFFlags = 0, string? pszItem = null) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHCreateItemInKnownFolder(kfid.Guid(), dwKFFlags, pszItem, g, out o)); /// Create a Shell item, given a parent folder and a child item ID. /// /// The IDList of the parent folder of the item being created; the IDList of psfParent. This parameter can be NULL, if psfParent is specified. /// /// /// A pointer to IShellFolder interface that specifies the shell data source of the child item specified by the pidl.This parameter /// can be NULL, if pidlParent is specified. /// /// A child item ID relative to its parent folder specified by psfParent or pidlParent. /// A reference to an interface ID. /// /// When this function returns, contains the interface pointer requested in riid. This will usually be IShellItem or IShellItem2. /// [DllImport(Lib.Shell32, CharSet = CharSet.Unicode, ExactSpelling = true)] [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762137")] public static extern HRESULT SHCreateItemWithParent([In, Optional] PIDL pidlParent, [In, Optional, MarshalAs(UnmanagedType.Interface)] IShellFolder? psfParent, [In] PIDL pidl, in Guid riid, [MarshalAs(UnmanagedType.Interface, IidParameterIndex = 3)] out object? ppvItem); /// Create a Shell item, given a parent folder and a child item ID. /// The type of the requested interface. This will typically be IShellItem or IShellItem2. /// /// The IDList of the parent folder of the item being created; the IDList of psfParent. This parameter cannot be NULL. /// /// A child item ID relative to its parent folder specified by psfParent or pidlParent. /// /// When this function returns, contains the interface pointer requested in riid. This will usually be IShellItem or IShellItem2. /// [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762137")] public static TIntf? SHCreateItemWithParent([In] PIDL pidlParent, [In] PIDL? pidl) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHCreateItemWithParent(pidlParent, null, pidl ?? PIDL.Null, g, out o)); /// Create a Shell item, given a parent folder and a child item ID. /// The type of the requested interface. This will typically be IShellItem or IShellItem2. /// /// A pointer to IShellFolder interface that specifies the shell data source of the child item specified by the pidl. This parameter /// cannot be NULL. /// /// A child item ID relative to its parent folder specified by psfParent or pidlParent. /// /// When this function returns, contains the interface pointer requested in riid. This will usually be IShellItem or IShellItem2. /// [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762137")] public static TIntf? SHCreateItemWithParent([In] IShellFolder psfParent, [In] PIDL? pidl) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHCreateItemWithParent(PIDL.Null, psfParent, pidl ?? PIDL.Null, g, out o)); /// Creates a Shell item array object. /// /// Type: PCIDLIST_ABSOLUTE /// /// The ID list of the parent folder of the items specified in ppidl. If psf is specified, this parameter can be NULL. If /// this pidlParent is not specified, it is computed from the psf parameter using IPersistFolder2. /// /// /// /// Type: IShellFolder* /// /// The Shell data source object that is the parent of the child items specified in ppidl. If pidlParent is specified, this /// parameter can be NULL. /// /// /// /// Type: UINT /// The number of elements in the array specified by ppidl. /// /// /// Type: PCUITEMID_CHILD_ARRAY /// The list of child item IDs for which the array is being created. This value can be NULL. /// /// /// Type: IShellItemArray** /// When this function returns, contains the address of an IShellItemArray interface pointer. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shcreateshellitemarray SHSTDAPI // SHCreateShellItemArray( PCIDLIST_ABSOLUTE pidlParent, IShellFolder *psf, UINT cidl, PCUITEMID_CHILD_ARRAY ppidl, IShellItemArray // **ppsiItemArray ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "024ccbc7-97f1-4cb5-8588-9c9b1f747336")] public static extern HRESULT SHCreateShellItemArray([In, Optional] PIDL pidlParent, [In, MarshalAs(UnmanagedType.Interface), Optional] IShellFolder? psf, [In, Optional] uint cidl, [In, Optional] IntPtr[]? ppidl, out IShellItemArray ppsiItemArray); /// /// Creates a Shell item array object from a data object. /// /// /// Type: IDataObject* /// A pointer to IDataObject interface. /// /// /// Type: REFIID /// A reference to the desired interface ID. /// /// /// Type: void** /// When this method returns, contains the interface pointer requested in . This is typically IShellItemArray. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// /// This function is useful for Shell extensions that implement IShellExtInit and are passed a data object to the /// IShellExtInit::Initialize method; for example, context menu handlers. /// /// /// This API lets you convert the data object into a Shell item that the handler can consume. It is recommend that handlers use a /// Shell item array rather than clipboard formats like CF_HDROP and CFSTR_SHELLIDLIST (also known as HIDA) as it /// leads to simpler code and allows some performance improvements. /// /// /// The resulting shell item array holds a reference to the source data object. Therefore, that data object must remain valid for /// the lifetime of the shell item array. Notably, the data objects passed to IDropTarget methods are no longer valid after the drop /// operation completes. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shcreateshellitemarrayfromdataobject SHSTDAPI // SHCreateShellItemArrayFromDataObject( IDataObject *pdo, REFIID riid, void **ppv ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "91e65c9a-0600-42e3-97f5-2a5960e1ec89")] public static extern HRESULT SHCreateShellItemArrayFromDataObject(IDataObject pdo, in Guid riid, out IShellItemArray ppv); /// Creates a Shell item array object from a data object. /// /// Type: IDataObject* /// A pointer to IDataObject interface. /// /// When this method returns, contains the interface pointer requested. This is typically IShellItemArray. /// /// /// This function is useful for Shell extensions that implement IShellExtInit and are passed a data object to the /// IShellExtInit::Initialize method; for example, context menu handlers. /// /// /// This API lets you convert the data object into a Shell item that the handler can consume. It is recommend that handlers use a /// Shell item array rather than clipboard formats like CF_HDROP and CFSTR_SHELLIDLIST (also known as HIDA) as it /// leads to simpler code and allows some performance improvements. /// /// /// The resulting shell item array holds a reference to the source data object. Therefore, that data object must remain valid for /// the lifetime of the shell item array. Notably, the data objects passed to IDropTarget methods are no longer valid after the drop /// operation completes. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shcreateshellitemarrayfromdataobject SHSTDAPI // SHCreateShellItemArrayFromDataObject( IDataObject *pdo, REFIID riid, void **ppv ); [PInvokeData("shobjidl_core.h", MSDNShortId = "91e65c9a-0600-42e3-97f5-2a5960e1ec89")] public static IShellItemArray SHCreateShellItemArrayFromDataObject(IDataObject pdo) { SHCreateShellItemArrayFromDataObject(pdo, typeof(IShellItemArray).GUID, out var o).ThrowIfFailed(); return o; } /// Creates a Shell item array object from a list of ITEMIDLIST structures. /// The number of elements in the array. /// A list of cidl constant pointers to ITEMIDLIST structures. /// When this function returns, contains an IShellItemArray interface pointer. [DllImport(Lib.Shell32, CharSet = CharSet.Unicode, ExactSpelling = true)] [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762146")] public static extern HRESULT SHCreateShellItemArrayFromIDLists(uint cidl, [In, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] IntPtr[] rgpidl, out IShellItemArray ppsiItemArray); /// Creates a Shell item array object from a list of ITEMIDLIST structures. /// A list of cidl constant pointers to ITEMIDLIST structures. /// When this function returns, contains an IShellItemArray interface pointer. [SecurityCritical, SuppressUnmanagedCodeSecurity] [PInvokeData("Shobjidl.h", MSDNShortId = "bb762146")] public static HRESULT SHCreateShellItemArrayFromIDLists(IEnumerable rgpidl, out IShellItemArray ppsiItemArray) => SHCreateShellItemArrayFromIDLists((uint)rgpidl.Count(), rgpidl.Select(p => (IntPtr)p).ToArray(), out ppsiItemArray); /// /// Creates an array of one element from a single Shell item. /// /// /// Type: IShellItem* /// Pointer to IShellItem object that represents the item. /// /// /// Type: REFIID /// A reference to the IID of the interface to retrieve through , typically IID_IShellItemArray. /// /// /// Type: void** /// When this method returns, contains the interface pointer requested in . This is typically a pointer to an IShellItemArray. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// This function creates a one-element array from a single item. To create an array from the contents of a folder, use SHCreateShellItemArray. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shcreateshellitemarrayfromshellitem SHSTDAPI // SHCreateShellItemArrayFromShellItem( IShellItem *psi, REFIID riid, void **ppv ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "93401708-6f11-474d-8009-24554f316e79")] public static extern HRESULT SHCreateShellItemArrayFromShellItem([In] IShellItem psi, in Guid riid, out IShellItemArray ppv); /// /// Creates an IShellItem or related object based on an item specified by an IDataObject. /// /// /// Type: IDataObject* /// A pointer to the source IDataObject instance. /// /// /// Type: DATAOBJ_GET_ITEM_FLAGS /// /// One or more values from the DATAOBJ_GET_ITEM_FLAGS enumeration to specify options regarding the target object. This value can be 0. /// /// /// /// Type: REFIID /// A reference to the IID of the interface to retrieve through , typically IID_IShellItem. /// /// /// Type: void** /// When this method returns, contains the interface pointer requested in . This is typically IShellItem. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// /// It is recommended that you use the IID_PPV_ARGS macro, defined in Objbase.h, to package the and parameters. This macro /// provides the correct IID based on the interface pointed to by the value in , which eliminates the possibility of a coding error. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shgetitemfromdataobject HRESULT // SHGetItemFromDataObject( IDataObject *pdtobj, DATAOBJ_GET_ITEM_FLAGS dwFlags, REFIID riid, void **ppv ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "1d7b9ffa-9980-4d68-85e4-7bab667be168")] public static extern HRESULT SHGetItemFromDataObject(IDataObject pdtobj, DATAOBJ_GET_ITEM_FLAGS dwFlags, in Guid riid, [MarshalAs(UnmanagedType.Interface, IidParameterIndex = 2)] out object? ppv); /// Creates an IShellItem or related object based on an item specified by an IDataObject. /// The type of the requested interface. This will typically be IShellItem or IShellItem2. /// /// Type: IDataObject* /// A pointer to the source IDataObject instance. /// /// /// Type: DATAOBJ_GET_ITEM_FLAGS /// /// One or more values from the DATAOBJ_GET_ITEM_FLAGS enumeration to specify options regarding the target object. This value can be 0. /// /// /// When this method returns, contains the interface pointer requested. This is typically IShellItem. // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shgetitemfromdataobject HRESULT // SHGetItemFromDataObject( IDataObject *pdtobj, DATAOBJ_GET_ITEM_FLAGS dwFlags, REFIID riid, void **ppv ); [PInvokeData("shobjidl_core.h", MSDNShortId = "1d7b9ffa-9980-4d68-85e4-7bab667be168")] public static TIntf? SHGetItemFromDataObject(IDataObject pdtobj, DATAOBJ_GET_ITEM_FLAGS dwFlags) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHGetItemFromDataObject(pdtobj, dwFlags, g, out o)); /// /// Retrieves an IShellItem for an object. /// /// /// Type: IUnknown* /// A pointer to the IUnknown of the object. /// /// /// Type: REFIID /// Reference to the desired IID. /// /// /// Type: void** /// When this method returns, contains the interface pointer requested in . This is typically IShellItem or a related interface. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// /// From the standpoint of performance, this method is preferred to SHGetIDListFromObject in those cases where the IDList is already /// bound to a folder. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shgetitemfromobject SHSTDAPI // SHGetItemFromObject( IUnknown *punk, REFIID riid, void **ppv ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "0ef494c0-81c7-4fbd-9c37-78861d8ac63b")] public static extern HRESULT SHGetItemFromObject([MarshalAs(UnmanagedType.IUnknown)] object punk, in Guid riid, [MarshalAs(UnmanagedType.Interface, IidParameterIndex = 1)] out object? ppv); /// Retrieves an IShellItem for an object. /// The type of the requested interface. This is typically IShellItem or a related interface. /// /// Type: IUnknown* /// A pointer to the IUnknown of the object. /// /// When this method returns, contains the interface pointer requested. This is typically IShellItem or a related interface. /// /// From the standpoint of performance, this method is preferred to SHGetIDListFromObject in those cases where the IDList is already /// bound to a folder. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shgetitemfromobject SHSTDAPI // SHGetItemFromObject( IUnknown *punk, REFIID riid, void **ppv ); [PInvokeData("shobjidl_core.h", MSDNShortId = "0ef494c0-81c7-4fbd-9c37-78861d8ac63b")] public static TIntf? SHGetItemFromObject(object punk) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHGetItemFromObject(punk, g, out o)); /// /// Retrieves an object that supports IPropertyStore or related interfaces from a pointer to an item identifier list (PIDL). /// /// /// Type: PCIDLIST_ABSOLUTE /// A pointer to an item ID list. /// /// /// Type: GETPROPERTYSTOREFLAGS /// One or more values from the GETPROPERTYSTOREFLAGS constants. This parameter can also be NULL. /// /// /// Type: REFIID /// A reference to the desired interface ID. /// /// /// Type: void** /// /// When this function returns, contains the interface pointer requested in . This is typically IPropertyStore or a related interface. /// /// /// /// None /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shgetpropertystorefromidlist SHSTDAPI // SHGetPropertyStoreFromIDList( PCIDLIST_ABSOLUTE pidl, GETPROPERTYSTOREFLAGS flags, REFIID riid, void **ppv ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "2a3c3c80-1bfc-4da0-ba6e-ac9e9a5c3e5b")] public static extern HRESULT SHGetPropertyStoreFromIDList(PIDL pidl, GETPROPERTYSTOREFLAGS flags, in Guid riid, [MarshalAs(UnmanagedType.Interface, IidParameterIndex = 2)] out object? ppv); /// /// Retrieves an object that supports IPropertyStore or related interfaces from a pointer to an item identifier list (PIDL). /// /// The type of the requested interface. This is typically IPropertyStore or a related interface. /// /// Type: PCIDLIST_ABSOLUTE /// A pointer to an item ID list. /// /// /// Type: GETPROPERTYSTOREFLAGS /// One or more values from the GETPROPERTYSTOREFLAGS constants. This parameter can also be NULL. /// /// /// When this function returns, contains the interface pointer requested. This is typically IPropertyStore or a related interface. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shgetpropertystorefromidlist SHSTDAPI // SHGetPropertyStoreFromIDList( PCIDLIST_ABSOLUTE pidl, GETPROPERTYSTOREFLAGS flags, REFIID riid, void **ppv ); [PInvokeData("shobjidl_core.h", MSDNShortId = "2a3c3c80-1bfc-4da0-ba6e-ac9e9a5c3e5b")] public static TIntf? SHGetPropertyStoreFromIDList(PIDL pidl, GETPROPERTYSTOREFLAGS flags) where TIntf : class => IidGetObj((in Guid g, out object? o) => SHGetPropertyStoreFromIDList(pidl, flags, g, out o)); /// Returns a property store for an item, given a path or parsing name. /// A pointer to a null-terminated Unicode string that specifies the item path. /// A pointer to a IBindCtx object, which provides access to a bind context. This value can be NULL. /// One or more values from the GETPROPERTYSTOREFLAGS constants. This parameter can also be NULL. /// A reference to the desired interface ID. /// /// When this function returns, contains the interface pointer requested in riid. This is typically IPropertyStore or a related interface. /// /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. [DllImport(Lib.Shell32, ExactSpelling = true)] [PInvokeData("Shlobjidl.h", MSDNShortId = "bb762197")] public static extern HRESULT SHGetPropertyStoreFromParsingName([In, MarshalAs(UnmanagedType.LPWStr)] string pszPath, [In, Optional] IBindCtx? pbc, GETPROPERTYSTOREFLAGS flags, in Guid riid, out IPropertyStore propertyStore); /// /// /// Retrieves the temporary property for the given item. A temporary property is a read/write store that holds properties only for /// the lifetime of the IShellItem object, rather than being persisted back into the item. /// /// /// /// Type: IShellItem* /// A pointer to the item for which the temporary property is to be retrieved. /// /// /// Type: REFPROPERTYKEY /// The property key. /// /// /// Type: PROPVARIANT* /// A pointer to the temporary property for the item. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shgettemporarypropertyforitem SHSTDAPI // SHGetTemporaryPropertyForItem( IShellItem *psi, REFPROPERTYKEY propkey, PROPVARIANT *ppropvar ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "53953a5a-04a2-4749-a03b-8cbd5ac889f1")] public static extern HRESULT SHGetTemporaryPropertyForItem(IShellItem psi, in PROPERTYKEY propkey, PROPVARIANT ppropvar); /// /// Applies the default set of properties on a Shell item. /// /// /// Type: HWND /// A handle to the item's parent window, which receives error notifications. This value can be NULL. /// /// /// Type: IShellItem* /// A pointer to the IShellItem object that represents the item. /// /// /// Type: DWORD /// Flags that customize the operation. See IFileOperation::SetOperationFlags for flag values. /// /// /// Type: IFileOperationProgressSink* /// /// A pointer to an IFileOperationProgressSink object used to follow the progress of the operation. See IFileOperation::Advise for /// details. This value can be NULL. /// /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// /// The list of properties to set a default value comes from the SetDefaultsFor registry entry under the ProgID for the file /// association of the item. The list is prefixed by "" and contains the canonical names of the properties to set the default value, /// for example, "". The possible properties for this list are System.Author, System.Document.DateCreated, and /// System.Photo.DateTaken. If the SetDefaultsFor entry does not exist on the ProgID, this function uses the default found on /// the SetDefaultsFor entry of HKEY_CLASSES_ROOT<b>*. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl/nf-shobjidl-shsetdefaultproperties SHSTDAPI SHSetDefaultProperties( // HWND hwnd, IShellItem *psi, DWORD dwFileOpFlags, IFileOperationProgressSink *pfops ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl.h", MSDNShortId = "c3ab80a3-c1f3-4223-9fe3-f7fe48c36460")] public static extern HRESULT SHSetDefaultProperties([Optional] HWND hwnd, IShellItem psi, FILEOP_FLAGS dwFileOpFlags, [Optional] IFileOperationProgressSink? pfops); /// /// /// Sets a temporary property for the specified item. A temporary property is kept in a read/write store that holds properties only /// for the lifetime of the IShellItem object, instead of writing them back into the item. /// /// /// /// Type: IShellItem* /// A pointer to the item on which the temporary property is to be set. /// /// /// Type: REFPROPERTYKEY /// Reference to the PROPERTYKEY that identifies the temporary property that is being set. /// /// /// Type: REFPROPVARIANT /// Reference to a PROPVARIANT that contains the value of the temporary property. /// /// /// Type: HRESULT /// If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. /// /// /// A temporary value can only be read with SHGetTemporaryPropertyForItem or by passing GPS_TEMPORARY to IShellItem2::GetPropertyStore. /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shsettemporarypropertyforitem SHSTDAPI // SHSetTemporaryPropertyForItem( IShellItem *psi, REFPROPERTYKEY propkey, REFPROPVARIANT propvar ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "779b1b2e-cd4b-404f-9d50-ac87b81640d2")] public static extern HRESULT SHSetTemporaryPropertyForItem(IShellItem psi, in PROPERTYKEY propkey, PROPVARIANT propvar); /// /// Deprecated. Returns a pointer to an ITEMIDLIST structure when passed a path. /// /// /// Type: PCWSTR /// A pointer to a null-terminated string that contains the path to be converted to a PIDL. /// /// /// Type: PIDLIST_ABSOLUTE /// Returns a pointer to an ITEMIDLIST structure if successful, or NULL otherwise. /// /// /// Prior to Windows 7, this function was declared in Shlobj.h. In Windows 7 and later versions, it is declared in Shobjidl.h. /// /// Note This function is available through Windows 7 and Windows Server 2003. It is possible that it will not be present in /// future versions of Windows. /// /// An alternative to this function is as follows: /// /// Call SHGetDesktopFolder to obtain IShellFolder for the desktop folder. /// Get the IShellFolder's bind context (IBindCtx). /// Call IShellFolder::ParseDisplayName with the IBindCtx and the path. /// /// // https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-shsimpleidlistfrompath PIDLIST_ABSOLUTE // SHSimpleIDListFromPath( PCWSTR pszPath ); [DllImport(Lib.Shell32, SetLastError = false, ExactSpelling = true)] [PInvokeData("shobjidl_core.h", MSDNShortId = "349974c2-4ab9-4eb2-897d-a5934893ed07")] public static extern PIDL SHSimpleIDListFromPath([MarshalAs(UnmanagedType.LPWStr)] string pszPath); /// Separates an ITEMIDLIST into the parent SHITEMID and the children SHITEMIDs /// A pointer to the ITEMIDLIST structure to be evaluated. /// The parent. /// The children. /// Returns TRUE if successful, FALSE otherwise. public static bool SplitPidl(IntPtr pidl, out PIDL parent, out PIDL child) { parent = ILClone(pidl); child = ILClone(ILFindLastID(pidl)); return ILRemoveLastID((IntPtr)parent); } /// Clones an ITEMIDLIST structure. /// A pointer to the ITEMIDLIST structure to be cloned. /// Returns a pointer to a copy of the ITEMIDLIST structure pointed to by pidl. [DllImport(Lib.Shell32, EntryPoint = "ILClone", SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776433")] internal static extern IntPtr IntILClone(IntPtr pidl); /// Combines two ITEMIDLIST structures. /// A pointer to the first ITEMIDLIST structure. /// /// A pointer to the second ITEMIDLIST structure. This structure is appended to the structure pointed to by pidl1. /// /// /// Returns an ITEMIDLIST containing the combined structures. If you set either pidl1 or pidl2 to NULL, the returned ITEMIDLIST /// structure is a clone of the non-NULL parameter. Returns NULL if pidl1 and pidl2 are both set to NULL. /// [DllImport(Lib.Shell32, EntryPoint = "ILCombine", SetLastError = false)] [PInvokeData("Shobjidl.h", MSDNShortId = "bb776437")] internal static extern IntPtr IntILCombine(IntPtr pidl1, IntPtr pidl2); private static T? IidGetObj(IidFunc f) where T : class { f(typeof(T).GUID, out var ppv).ThrowIfFailed(); return (T?)ppv; } /// Implements CLSID_ApplicationAssociationRegistration to create IApplicationAssociationRegistration. [PInvokeData("shobjidl_core.h")] [ComImport, Guid("591209c7-767b-42b2-9fba-44ee4615f2c7"), ClassInterface(ClassInterfaceType.None)] public class ApplicationAssociationRegistration { } /// Implements CLSID_ApplicationDestinations to create IApplicationDestinations. [PInvokeData("shobjidl_core.h")] [ComImport, Guid("86c14003-4d6b-4ef3-a7b4-0506663b2e68"), ClassInterface(ClassInterfaceType.None)] public class ApplicationDestinations { } /// Implements CLSID_ApplicationDocumentLists to create IApplicationDocumentLists. [PInvokeData("shobjidl_core.h")] [ComImport, Guid("86bec222-30f2-47e0-9f25-60d11cd75c28"), ClassInterface(ClassInterfaceType.None)] public class ApplicationDocumentLists { } /// Class interface for IEnumerableObjectCollection. [ComImport, Guid("2d3468c1-36a7-43b6-ac24-d3f02fd9607a"), ClassInterface(ClassInterfaceType.None)] public class CEnumerableObjectCollection { } }