using System;
namespace System.Runtime.InteropServices
{
/// Use instead.
// Token: 0x020002F1 RID: 753
[Obsolete]
public struct BIND_OPTS
{
/// Specifies the size of the BIND_OPTS structure in bytes.
// Token: 0x04000CC2 RID: 3266
public int cbStruct;
/// Controls aspects of moniker binding operations.
// Token: 0x04000CC3 RID: 3267
public int grfFlags;
/// Flags that should be used when opening the file that contains the object identified by the moniker.
// Token: 0x04000CC4 RID: 3268
public int grfMode;
/// Indicates the amount of time (clock time in milliseconds, as returned by the GetTickCount function) the caller specified to complete the binding operation.
// Token: 0x04000CC5 RID: 3269
public int dwTickCountDeadline;
}
}