CarotDav_decompile/Rei.Com/IAsyncOperation.cs

28 lines
787 B
C#

// Decompiled with JetBrains decompiler
// Type: Rei.Com.IAsyncOperation
// Assembly: Rei.Com, Version=1.13.2.9255, Culture=neutral, PublicKeyToken=null
// MVID: 608BC623-FF3D-4118-BA82-AC691A688790
// Assembly location: F:\Eigene Dateien\Dropbox\portable Collection\Progs\CarotDAV\Rei.Com.dll
using System;
using System.Runtime.InteropServices;
namespace Rei.Com
{
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[Guid("3D8B0590-F691-11D2-8EA9-006097DF5BD4")]
[ComImport]
public interface IAsyncOperation
{
void SetAsyncMode(bool fDoOpAsync);
void GetAsyncMode(out bool pfIsOpAsync);
void StartOperation(IntPtr pbcReserved);
void InOperation(out bool pfInAsyncOp);
void EndOperation(IntPtr hResult, IntPtr pbcReserved, int dwEffects);
}
}