// WARNING: Please don't edit this file. It was generated by Swift/WinRT v0.0.1 // swiftlint:disable all import Foundation @_spi(WinRTInternal) @_spi(WinRTImplements) import WindowsFoundation import CWinRT public enum __IMPL_Windows_Storage_FileProperties { public enum IStorageItemExtraPropertiesBridge : AbiInterfaceBridge { public typealias CABI = __x_ABI_CWindows_CStorage_CFileProperties_CIStorageItemExtraProperties public typealias SwiftABI = __ABI_Windows_Storage_FileProperties.IStorageItemExtraProperties public typealias SwiftProjection = AnyIStorageItemExtraProperties public static func from(abi: ComPtr?) -> SwiftProjection? { guard let abi = abi else { return nil } return IStorageItemExtraPropertiesImpl(abi) } public static func makeAbi() -> CABI { let vtblPtr = withUnsafeMutablePointer(to: &__ABI_Windows_Storage_FileProperties.IStorageItemExtraPropertiesVTable) { $0 } return .init(lpVtbl: vtblPtr) } } fileprivate class IStorageItemExtraPropertiesImpl: IStorageItemExtraProperties, WinRTAbiImpl { fileprivate typealias Bridge = IStorageItemExtraPropertiesBridge fileprivate let _default: Bridge.SwiftABI fileprivate var thisPtr: WindowsFoundation.IInspectable { _default } fileprivate init(_ fromAbi: ComPtr) { _default = Bridge.SwiftABI(fromAbi) } /// [Open Microsoft documentation](https://learn.microsoft.com/uwp/api/windows.storage.fileproperties.istorageitemextraproperties.retrievepropertiesasync) fileprivate func retrievePropertiesAsync(_ propertiesToRetrieve: WindowsFoundation.AnyIIterable!) throws -> WindowsFoundation.AnyIAsyncOperation?>! { try _default.RetrievePropertiesAsyncImpl(propertiesToRetrieve) } /// [Open Microsoft documentation](https://learn.microsoft.com/uwp/api/windows.storage.fileproperties.istorageitemextraproperties.savepropertiesasync) fileprivate func savePropertiesAsync(_ propertiesToSave: WindowsFoundation.AnyIIterable?>!) throws -> WindowsFoundation.AnyIAsyncAction! { try _default.SavePropertiesAsyncImpl(propertiesToSave) } /// [Open Microsoft documentation](https://learn.microsoft.com/uwp/api/windows.storage.fileproperties.istorageitemextraproperties.savepropertiesasync) fileprivate func savePropertiesAsync() throws -> WindowsFoundation.AnyIAsyncAction! { try _default.SavePropertiesAsyncOverloadDefaultImpl() } } }